Out streams

class cppstream.OutStream

Bases: cppstream.base.Stream

Class that all out streams inherit from. C++ equivalent: std::basic_ostream<char>

__lshift__(other: Any) cppstream._out.out.OutStream

Write an object to the stream. C++ equivalent: std::basic_ostream::operator<<

Parameters

other (Any) – object to write to the stream

class cppstream.out._Cout

Bases: cppstream._out.out.OutStream

Class that represents the cout stream. Not intended to be used directly, please use the cppstream.cout variable instead.