C++ Complementary Library
A text output stream is an object that allows you to write text to an output resource.
The type of the referenced output resource.
Constructs a text output stream from the given output resource and with the given encoding form and endianness. The text output stream will hold a non-owning reference to the resource, which is expected to stay valid when using the text output stream.
The output resource to write to.
The encoding form that the text is going to be in.
The endianness that the text is going to be in.
Copy-constructs a text_output_stream from an existing one.
The text_output_stream to copy from.
Copy-assigns a text_output_stream into this one.
The text_output_stream to copy from.
Move-constructs a text_output_stream from an existing one.
The text_output_stream to move from.
Move-assigns a text_output_stream into this one.
The text_output_stream to move from.
Returns the encoding form associated with this text output stream.
Sets the encoding form associated with this text output stream.
The new encoding form to use with this text output stream.
Writes a BOM (byte order mark) for the current endianness in the current encoding form.
Copyright © 2022-2025 Daniel T. McGinnis