template<
typename Char>
class fmt::BasicArrayWriter< Char >
\rst This class template provides operations for formatting and writing data into a fixed-size array. For writing into a dynamically growing buffer use :class:fmt::BasicMemoryWriter
.
Any write method will throw std::runtime_error
if the output doesn't fit into the array.
You can use one of the following typedefs for common character types:
+-----------—+------------------------—+ | Type | Definition | +==============+===========================+ | ArrayWriter | BasicArrayWriter<char> | +-----------—+------------------------—+ | WArrayWriter | BasicArrayWriter<wchar_t> | +-----------—+------------------------—+ \endrst
Definition at line 3342 of file format.h.