Skip to content

class abstract_writer<T> binary_io

template <typename T = void>
struct abstract_writer : abstract_stream<T> { … }

Base class for all typed writers

function write(const T *, size_t)

[[nodiscard]] virtual size_t write(const T* data, size_t size) = 0

Defined at io/file.hpp:184

function write(const U &)

template <typename U = T>
    requires(!std::is_void_v<U>)
[[nodiscard]] bool write(const U& data)

Defined at io/file.hpp:195

Defined at io/file.hpp:182