命名空间
变体
操作

std::formattable

来自 cppreference.com
< cpp‎ | utility‎ | format
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
定义在头文件 <format>
template< class T, class CharT >

concept formattable = /* formattable_with */<
  std::remove_reference_t<T>,
  std::basic_format_context</* fmt_iter_for */<CharT>, CharT>

>;
(1) (自 C++23 起)
辅助模板
template< class CharT >
using /* fmt_iter_for */ = /* unspecified */;
(2) (仅供说明*)
template< class T, class Context,

          class Formatter =
              typename Context::template
                  formatter_type<std::remove_const_t<T>> >
concept /* formattable_with */ =
  std::semiregular<Formatter> &&
  requires (Formatter& f, const Formatter& cf, T&& t, Context fc,
            std::basic_format_parse_context<
                typename Context::char_type
            > pc) {
    { f.parse(pc) } -> std::same_as<typename decltype(pc)::iterator>;
    { cf.format(t, fc) } -> std::same_as<typename Context::iterator>;

  };
(3) (仅供说明*)

概念 formattable 指定 std::formatter<std::remove_cvref_t<T>, CharT> 满足 BasicFormatterFormatter 的要求(如果 std::remove_reference_t<T> 是 const 限定的)。

仅供说明的别名模板 /* fmt_iter_for */ 生成一个未指定的类型,该类型满足 std::output_iterator<const CharT&>

[编辑] 缺陷报告

以下更改行为的缺陷报告已追溯应用于先前发布的 C++ 标准。

DR 应用于 发布的行为 正确行为
LWG 3925 C++23 std::basic_format_context 的第二个模板参数未提供 已提供

[编辑] 另请参阅

(C++20)
定义给定类型的格式化规则
(类模板) [编辑]
抽象给定格式化参数类型和字符类型的格式化操作
(命名要求)
(C++20)
定义 格式化库 使用的函数
(命名要求)