命名空间
变体
操作

std::formatter<std::priority_queue>

来自 cppreference.com
< cpp‎ | 容器‎ | 优先队列
定义在头文件 <queue>
template< class CharT, class T, std::formattable<CharT> Container, class... U >
struct formatter<std::priority_queue<T, Container, U...>, CharT>;
(自 C++23 起)

针对容器适配器类型 std::priority_queuestd::formatter 模板特化允许用户使用 格式化函数 将底层容器转换为其文本表示形式,表示为元素的集合。

如果 std::formattable<Container, CharT>true,则启用该特化。

内容

[编辑] 成员类型

名称 定义
maybe-const-container fmt-maybe-const <Container, CharT>
((仅供说明用成员类型*)
maybe-const-adaptor maybe-const <
    std::is_const_v<maybe-const-container>,
    std::priority_queue<T, Container, U...>>

((仅供说明用成员类型*)

[编辑] 数据成员

名称 定义
underlying_ 类型为 std::formatter<ranges::ref_view<maybe-const-container>, CharT> 的底层格式化程序
((仅供说明用成员对象*)

[编辑] 成员函数

parse
根据 range-format-spec 解析格式说明符
(公共成员函数)
format
根据 range-format-spec 编写范围格式化输出
(公共成员函数)

std::formatter<std::priority_queue>::parse

template< class ParseContext >
constexpr auto parse( ParseContext& ctx ) -> ParseContext::iterator;

等效于 return underlying_ .parse(ctx);.

返回值

一个指向底层容器的 range-format-spec 结尾的迭代器。

std::formatter<std::priority_queue>::format

template< class FormatContext >

auto format( /*maybe-const-adaptor*/& r, FormatContext& ctx ) const

    -> FormatContext::iterator;

等效于 return underlying_ .format(r.c, ctx);.

返回值

一个指向输出范围结尾的迭代器。

[编辑] 示例

[编辑] 另请参阅

(C++20)
为给定类型定义格式化规则
(类模板) [编辑]
帮助实现针对范围类型 std::formatter 特化的类模板
(类模板) [编辑]