C++ Complementary Library
An output resource is a destination for output. It's an object you can write data to.
Constructs an output resource with the given buffer capacity.
The capacity of the I/O buffer. If this is zero, the output resource is completely unbuffered.
Copy-constructs an output_resource from an existing one.
The output_resource to copy from.
Copy-assigns an output_resource into this one.
The output_resource to copy from.
Move-constructs an output_resource from an existing one.
The output_resource to move from.
Move-assigns an output_resource into this one.
The output_resource to move from.
Writes byte_count bytes from the data array to this output resource.
The array of bytes that will be written to this output resource.
The number of bytes to write to this output resource.
Flushes this output resource, ensuring that any data that has previously been requested to be written out actually gets written out.
Writes byte_count bytes from the data array to this output resource.
The array of bytes that will be written to this output resource.
The number of bytes to write to this output resource.
Copyright © 2022-2025 Daniel T. McGinnis