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#[allow(unused)]
9#[doc(inline)]
10pub use std::option::Option;
1112cfg_unstable! {
13mod product;
14mod sum;
15}