okser::out::stdstring class

A simple output to a C++ std::string

Example

std::string result;
auto output = okser::out::stdstring{result};

// ...

okser::serialize<bundle>(output, 100, 200, 300);

Public functions

template<typename T>
void add(const T& value)
template<>
void add(const unsigned char& value)

Public variables

std::reference_wrapper<std::string> str