|
| BinaryFileOutputStream ()=default |
|
| BinaryFileOutputStream (const Path &filePath) |
|
| BinaryFileOutputStream (BinaryFileOutputStream &&other)=default |
|
template<typename T , bool DO_BYTE_REVERSAL = false> |
void | writeData (const T *data) |
|
template<typename T , bool DO_BYTE_REVERSAL = false> |
void | writeData (TSpanView< T > data) |
|
BinaryFileOutputStream & | operator= (BinaryFileOutputStream &&rhs)=default |
|
| StdOutputStream ()=default |
|
| StdOutputStream (std::unique_ptr< std::ostream > stream) |
|
| StdOutputStream (StdOutputStream &&other) noexcept |
|
void | write (std::size_t numBytes, const std::byte *bytes) override |
| Write data in the form of raw bytes in one go. The method does not return before finishing the writing process.
|
|
void | writeString (std::string_view str) override |
| Write a string in one go.
|
|
void | seekPut (std::size_t pos) override |
| Set the output position of the stream. The unit of the position is defined by the implementation.
|
|
std::optional< std::size_t > | tellPut () override |
| Get the current output position of the stream. The unit of the position is defined by the implementation.
|
|
| operator bool () const override |
|
std::ostream * | getStream () const |
|
StdOutputStream & | operator= (StdOutputStream &&rhs) noexcept |
|
virtual std::size_t | writeSome (std::size_t numBytes, const std::byte *bytes) |
| Write some data in the form of raw bytes. The method may return before finish writing all bytes. In such case, the method returns how many bytes were actually written.
|
|
void | writeLine (std::string_view str) |
| Write a line. Equivalent to calling writeString(std::string_view) with '
' as an extra character.
|
|
virtual | ~IDataStream ()=default |
|
virtual std::string | acquireName () const |
| Access to the stream's name. This method is not meant to be used in a high performance context, unless otherwise stated by the overridder. Stream name is not always available.
|
|