1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! The Rust core optional value type

//!

//! This module provides the `Option<T>` type for returning and

//! propagating optional values.


mod from_stream;

#[doc(inline)]
pub use std::option::Option;

cfg_unstable! {
    mod product;
    mod sum;
}