blob: 76f096b3f219f23fa22f5e569886ea3da189a28c [file] [log] [blame] [edit]
//! 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;
}