#include <fe/format.h>
template<class T, class CharT = char>
concept Formattable =
requires(std::basic_format_context<std::back_insert_iterator<std::basic_string<CharT>>, CharT>& ctx, T
const& v) {
std::formatter<std::remove_cvref_t<T>, CharT>{}.format(v, ctx);
}
Definition at line 116 of file format.h.