blob: 3ff5833fb63319186b4bac40e47ea1580d94a11e [file] [edit]
//! The I/O Prelude.
//!
//! The purpose of this module is to alleviate imports of many common I/O traits
//! by adding a glob import to the top of I/O heavy modules:
//!
//! ```
//! # #![feature(core_io)]
//! # #![allow(unused_imports)]
//! use core::io::prelude::*;
//! ```
#[stable(feature = "rust1", since = "1.0.0")]
pub use crate::io::{Seek, Write};