Crate rust_book14
source ·Expand description
Rust
book lessons.
Chapter 14.
Modules
- Slices utils.
Functions
- Returns the contained first value or a provided default. See:
Option::unwrap_or
- Returns the contained first value or computes it from a closure. See:
Option::unwrap_or_else
- Returns the contained first value or panics with a
msg
. See:Option::expect