Stax
Programming language
Loading...
Searching...
No Matches
IsFormattable Concept Reference

#include <format.hpp>

Concept definition

template<typename T>
concept IsFormattable = requires(T& v, fmt::format_context ctx) {
fmt::formatter<std::remove_cvref_t<T>>().format(v, ctx);
}
Definition format.hpp:12