Constructors
Declared in <bslx_byteinstream.h>
Create an empty input byte stream. Note that the constructed object is useless until a buffer is set with the reset method.
explicit
ByteInStream();
» more...
Create an input byte stream containing the specified srcData.
explicit
ByteInStream(bslstl::StringRef const& srcData);
» more...
Create an input byte stream containing the specified initial numBytes from the specified buffer. The behavior is undefined unless 0 == numBytes if 0 == buffer.
ByteInStream(
char const* buffer,
std::size_t numBytes);
» more...
| Name | Description |
|---|---|
| srcData | string reference providing the initial stream contents |
| buffer | memory buffer providing the initial stream contents |
| numBytes | number of bytes from buffer to use |