- 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
- Clang: ??
- GCC:
- GCC, C++11 mode: 4.6.1
- ICC: ??
- Visual C++: 2008 (std::tr1), 2010, 2012, 2013, 2015