std::range-default-formatter<std::range_format::map>
来自cppreference.com
< cpp | utility | format | ranges formatter
在标头 <format> 定义
|
||
template< ranges::input_range R, class CharT > struct /*range-default-formatter*/<range_format::map, R, CharT>; |
(C++23 起) (仅用于阐述*) |
|
用于范围类型的类模板 /*range-default-formatter*/ 进行了特化,用于当 std::format_kind<R> 为 std::range_format::map 时将范围作为键值映射进行格式化。
成员类型
成员 | 定义 |
maybe-const-map (私有)
|
fmt-maybe-const <R, CharT>(仅用于阐述的成员类型*) |
element-type (私有)
|
std::remove_cvref_t<ranges::range_reference_t<maybe-const-map >>(仅用于阐述的成员类型*) |
数据成员
成员 | 定义 |
underlying_ (私有)
|
std::range_formatter<element-type , CharT> 类型的底层格式化器(仅用于阐述的成员对象*) |
成员函数
(构造函数) |
构造 range-default-formatter (公开成员函数) |
parse |
按照 范围格式说明 的说明解析格式说明符 (公开成员函数) |
format |
按照 范围格式说明 写入范围的格式化输出 (公开成员函数) |
std::range-default-formatter<std::range_format::map>::range-default-formatter
constexpr /*range-default-formatter*/(); |
||
等价于:
underlying_.set_brackets(STATICALLY_WIDEN<CharT>("{"), STATICALLY_WIDEN<CharT>("}"));
underlying_.underlying().set_brackets({}, {});
underlying_.underlying().set_separator(STATICALLY_WIDEN<charT>(": "));
其中 STATICALLY_WIDEN<CharT>("...") 当 CharT
为 char 时为 "...",而当 CharT
为 wchar_t 时为 L"..."。
如果不满足以下条件则程序非良构:
-
element-type
是 std::pair 的特化,或者 -
element-type
是 std::tuple 的特化且std::tuple_size_v<element-type>
为 2。
std::range-default-formatter<std::range_format::map>::parse
template< class ParseContext > constexpr auto parse( ParseContext& ctx ) -> ParseContext::iterator; |
||
等价于 return underlying_.parse(ctx);。
返回 范围格式说明 的尾后迭代器。
std::range-default-formatter<std::range_format::map>::format
template< class FormatContext > auto format( maybe-const-map& r, FormatContext& ctx ) const -> FormatContext::iterator; |
||
等价于 return underlying_.format(r, ctx);。
返回输出范围的尾后迭代器。
参阅
(C++20) |
定义针对给定类型的格式化规则 (类模板) |
(C++23) |
用于帮助实现 std::formatter 对范围类型的特化的类模板 (类模板) |