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

履歴 編集

function
<format>

std::basic_format_string::get(C++23)

constexpr basic_string_view<charT> get() const noexcept; // (1)

概要

書式文字列を取得する。

戻り値

メンバ変数としてbasic_string_view<charT> str;が定義されるとして、

return str;

#include <cassert>
#include <format>

template <class... Args>
void f(std::format_string<Args...> fmt, Args&&...) {
  assert(fmt.get() == "Hello {} World");
}

int main() {
  f("Hello {} World", 42);
}

バージョン

言語

  • C++23

処理系

参照