最終更新日時(UTC):
が更新

履歴 編集

class template
<format>

std::format_to_n_result(C++20)

namespace std {
  template<class Out>
  struct format_to_n_result {
    Out out;
    iter_difference_t<Out> size;
  };
}

概要

format_to_nの結果を表す構造体。

メンバ変数

名前 説明 対応バージョン
out 出力後の出力イテレーター C++20
size 文字列表現全体を格納するのに必要だった文字数 C++20

バージョン

言語

  • C++20

処理系

関連項目

参照