Skip to content

Latest commit

 

History

History
60 lines (45 loc) · 1.48 KB

tuple_size.md

File metadata and controls

60 lines (45 loc) · 1.48 KB

tuple_size

  • utility[meta header]
  • std[meta namespace]
  • class template[meta id-type]
  • cpp11[meta cpp]
namespace std {
  template <class T> class tuple_size; // 先行宣言

  // C++11
  struct tuple_size<std::pair<T1, T2>> {
    static constexpr std::size_t value = 2;
  };

  // C++14
  struct tuple_size<std::pair<T1, T2>>
    : public integral_constant<std::size_t, 2> {};
}
  • integral_constant[link /reference/type_traits/integral_constant.md]

概要

tuple_sizeは、タプルとして見なせる型の要素数を取得するためのクラスである。

要素数は、integral_constantの機能を利用してコンパイル時の定数値として取得できる。

<utility>ヘッダでは、pairに関する特殊化を定義する。

#include <utility>

int main()
{
  static_assert(std::tuple_size<std::pair<int, int>>::value == 2, "");
}
  • std::tuple_size[color ff0000]

出力

バージョン

言語

  • C++11

処理系

参照