Home
last modified time | relevance | path

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

/src/contrib/llvm-project/libcxx/include/__format/ !
H A Drange_default_formatter.h49 enum class range_format { disabled, map, set, sequence, string, debug_string }; enum
58 constexpr range_format format_kind = [] {
62 return range_format::disabled;
67 inline constexpr range_format format_kind<_Rp> = [] {
73 return range_format::disabled;
81 return range_format::map;
84 return range_format::set;
87 return range_format::sequence;
90 template <range_format _Kp, ranges::input_range _Rp, class _CharT>
96 struct _LIBCPP_TEMPLATE_VIS __range_default_formatter<range_format::sequence, _Rp, _CharT> {
[all …]
/src/contrib/llvm-project/libcxx/include/ !
H A Dformat136 enum class range_format { // since C++23
150 constexpr range_format format_kind<R> = see below; // since C++23
158 template<range_format K, ranges::input_range R, class charT>
164 requires (format_kind<R> != range_format::disabled) &&
/src/contrib/llvm-project/libcxx/modules/std/ !
H A Dformat.inc64 using std::range_format;