Improve some Option code example
This commit is contained in:
parent
43843d06ea
commit
b922d1a405
@ -93,16 +93,12 @@
|
||||
//! let msg = Some("howdy");
|
||||
//!
|
||||
//! // Take a reference to the contained string
|
||||
//! match msg {
|
||||
//! Some(ref m) => println!("{}", *m),
|
||||
//! None => (),
|
||||
//! if let Some(ref m) = msg {
|
||||
//! println!("{}", *m);
|
||||
//! }
|
||||
//!
|
||||
//! // Remove the contained string, destroying the Option
|
||||
//! let unwrapped_msg = match msg {
|
||||
//! Some(m) => m,
|
||||
//! None => "default message",
|
||||
//! };
|
||||
//! let unwrapped_msg = msg.unwrap_or("default message");
|
||||
//! ```
|
||||
//!
|
||||
//! Initialize a result to `None` before a loop:
|
||||
|
Loading…
x
Reference in New Issue
Block a user