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

履歴 編集

type-alias
<execution>

std::execution::decayed-tuple(C++26)

namespace std::execution {
  template<class... Ts>
  using decayed-tuple = tuple<decay_t<Ts>...>;  // exposition only
}

概要

decayed-tupleは、型パラメータパックTsからdecay結果を要素型とするtuple型を作成する説明専用のエイリアステンプレートである。

バージョン

言語

  • C++26

関連項目

参照