MT Core (C++)
Core library for replacing C++ standard in project usage
Loading...
Searching...
No Matches
mtcore::Formattable Concept Reference

Represents a type that can be formatted. More...

#include <traits.hpp>

Concept definition

template<typename T>
concept mtcore::Formattable = requires(const T &t, io::Writer<io::impl::VoidWriterImpl<T>> &wi, const io::FormatOptions &opts) {
}
Represents a type that can be formatted.
Options for specifying formatting.
Definition format.hpp:36
Struct to override to specify how a type should be formatted.
Definition format.hpp:45
A writer that writes data to some sort of stream or buffer Note: the data elements written should be ...
Definition io/writer.hpp:51

Detailed Description

Represents a type that can be formatted.

Definition at line 270 of file core/mtcore/traits.hpp.