Home
last modified time | relevance | path

Searched refs:range_format (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/libcxx/include/__format/
H A Drange_default_formatter.h45 enum class range_format { disabled, map, set, sequence, string, debug_string }; enum
54 constexpr range_format format_kind = [] {
58 return range_format::disabled;
63 inline constexpr range_format format_kind<_Rp> = [] {
69 return range_format::disabled;
77 return range_format::map;
80 return range_format::set;
83 return range_format::sequence;
101 inline constexpr range_format format_kind<const _CharT[N]> = range_format::disabled;
103 template <range_format _Kp, ranges::input_range _Rp, class _CharT>
[all …]
/openbsd-src/gnu/llvm/libcxx/include/
H A Dformat117 enum class range_format { // since C++23
131 constexpr range_format format_kind<R> = see below; // since C++23
139 template<range_format K, ranges::input_range R, class charT>
145 requires (format_kind<R> != range_format::disabled) &&