cppStream 0.1.1

a wrapper brings `<<` and `>>` operator to rust's writer/reader/stream like what C++ did
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(unused_mut)]
#![feature(old_orphan_check)]
#![feature(box_syntax)]

pub use istream::{cin,istream,AsIStream,ToIStream};
pub use ostream::{cout,endl,ostream,ToOStream,AsOStream};
pub use iostream::{iostream,ToIOStream,RefStream,ByRefStream,AsIOStream};

pub mod istream;
pub mod ostream;
pub mod iostream;