std::range-default-formatter<std::range_format::sequence>
来自 cppreference.com
< cpp | utility | format | ranges formatter
定义在头文件 <format> 中 |
||
template< ranges::input_range R, class CharT > struct /*range-default-formatter*/<range_format::sequence, R, CharT>; |
(自 C++23 起) (仅供说明*) |
|
类模板 /*range-default-formatter*/ 针对范围类型,如果 std::format_kind<R> 是 std::range_format::sequence,则专门用于将范围格式化为元素序列。
[编辑] 成员类型
成员 | 定义 |
maybe-const-r (私有) |
fmt-maybe-const <R, CharT>(仅供说明成员类型*) |
[编辑] 数据成员
成员 | 定义 |
underlying_ (私有) |
类型为 的 底层格式化器 std::range_formatter<std::remove_cvref_t< |
[编辑] 成员函数
(构造函数) (隐式声明) |
构造一个 /*range-default-formatter*/ (公有成员函数) |
set_separator |
为范围格式化结果设置指定的间隔符 (公有成员函数) |
set_brackets |
为范围格式化结果设置指定的开括号和闭括号 (公有成员函数) |
parse |
按 range-format-spec 指定的格式解析格式说明符 (公有成员函数) |
format |
按 range-format-spec 指定的格式写入范围格式化输出 (公有成员函数) |
std::range-default-formatter<std::range_format::sequence>::set_separator
constexpr void set_separator( std::basic_string_view<CharT> sep ) noexcept; |
||
等效于调用 underlying_.set_separator(sep).
std::range-default-formatter<std::range_format::sequence>::set_brackets
constexpr void set_brackets( std::basic_string_view<CharT> opening, std::basic_string_view<CharT> closing ) noexcept; |
||
等效于调用 underlying_.set_brackets(opening, closing).
std::range-default-formatter<std::range_format::sequence>::parse
template< class ParseContext > constexpr auto parse( ParseContext& ctx ) -> ParseContext::iterator; |
||
等效于 return underlying_.parse(ctx);.
返回指向 range-format-spec 结尾的迭代器。
std::range-default-formatter<std::range_format::sequence>::format
template< class FormatContext > auto format( /*maybe-const-r*/& elems, FormatContext& ctx ) const -> FormatContext::iterator; |
||
等效于 return underlying_.format(elems, ctx);.
返回输出范围末尾之后的迭代器。
[编辑] 另请参见
(C++20) |
为给定类型定义格式化规则 (类模板) |
(C++23) |
类模板,帮助实现 std::formatter 范围类型的专业化 (类模板) |