The Rust Programming Language

Metadata
- Author: rust-lang.org
- Full Title: The Rust Programming Language
- Category: articles
- URL: https://doc.rust-lang.org/stable/book/ch13-01-closures.html
Highlights
- If the
Option<T>is theSomevariant,unwrap_or_elsereturns the value from within theSome. If theOption<T>is theNonevariant,unwrap_or_elsecalls the closure and returns the value returned by the closure (View Highlight)