···
513
513
reference: "gleam/option.html#Option".to_string(),
514
514
},
515
515
SearchItem {
516
516
-
type_: SearchItemType::Function,
516
516
+
type_: SearchItemType::Value,
517
517
parent_title: "gleam/option".to_string(),
518
518
title: "unwrap".to_string(),
519
519
content: "Extracts the value from an `Option`, returning a default value if there is none.".to_string(),
520
520
reference: "gleam/option.html#unwrap".to_string(),
521
521
},
522
522
SearchItem {
523
523
-
type_: SearchItemType::Constant,
523
523
+
type_: SearchItemType::Value,
524
524
parent_title: "gleam/dynamic/decode".to_string(),
525
525
title: "bool".to_string(),
526
526
content: "A decoder that decodes `Bool` values.\n\n # Examples\n\n \n let result = decode.run(dynamic.from(True), decode.bool)\n assert result == Ok(True)\n \n".to_string(),