C++ Complementary Library
A transparent container input resource is an input resource that reads from a container that it does not own.
The type of content referenced by this transparent container input resource.
The type of element of the content referenced by this transparent container input resource.
Constructs a transparent container input resource with the given initial content and buffer capacity.
The content that this transparent container input resource will reference.
The capacity of the I/O buffer. If this is zero, the transparent container input resource is completely unbuffered.
Copy-constructs a transparent_container_input_resource from an existing one.
The transparent_container_input_resource to copy from.
Copy-assigns a transparent_container_input_resource into this one.
The transparent_container_input_resource to copy from.
Move-constructs a transparent_container_input_resource from an existing one.
The transparent_container_input_resource to move from.
Move-assigns a transparent_container_input_resource into this one.
The transparent_container_input_resource to move from.
Returns true if this transparent container input resource is at the end of its referenced content. Otherwise, returns false.
Returns the position this transparent container input resource is at, that is, the position at which read operations will take place next.
Returns a constant reference to the referenced content.
Reads byte_count bytes from this transparent container input resource and places them in the provided data array.
The array into which the read bytes will be placed.
The number of bytes to read from this input resource.
The kind of read request that is being issued to this input resource.
Copyright © 2022-2025 Daniel T. McGinnis