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_
.format(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);.
返回一个迭代器,指向输出范围的末尾。
[edit] 另请参阅
(C++20) |
为给定类型定义格式化规则 (类模板) |
(C++23) |
类模板,用于帮助实现std::formatter针对范围类型的特化。 (类模板) |