cppstreams 1.1.0

C++ streams in rust
Documentation
1
2
3
4
5
6
7
8
pub struct Endl;

impl std::fmt::Display for Endl {
    #[inline]
    fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        writeln!(fmt)
    }
}