cppstreams/
lib.rs

1mod endl;
2pub mod formatting;
3mod istream;
4mod ostream;
5mod stringstream;
6#[cfg(test)]
7mod tests;
8
9pub use endl::Endl;
10pub use istream::{Cin, IStream};
11pub use ostream::{Cerr, Cout, OStream};
12pub use stringstream::StringStream;