Function inserter
Summary
#include "breeze/stream/inserter.hpp"
(1) explicit inserter(std::ostream &dest, width_reset wr=reset_width)
(2) inserter(inserter const &)=delete
Function overload
Synopsis
#include "breeze/stream/inserter.hpp"
explicit inserter(std::ostream &dest, width_reset wr=reset_width)
Description
- Parameters
dest
- The stream to which all inserted characters will be sent (called the destination stream throughout the documentation of this class).wr
- See the documentation of the destructor.- Exceptions
- This constructor might throw an exception originating from the
sentry
constructor.
Source
Line 72 in breeze/stream/inserter.hpp.
Synopsis
#include "breeze/stream/inserter.hpp"
inserter(inserter const &)=delete
Description
Deleted copy constructor.
Source
Line 77 in breeze/stream/inserter.hpp.