1//! The Rust core optional value type
2//!
3//! This module provides the `Option<T>` type for returning and
4//! propagating optional values.
56mod from_stream;
78#[doc(inline)]
9pub use std::option::Option;
1011cfg_unstable! {
12mod product;
13mod sum;
14}