Defined in header <array> | ||
---|---|---|
template< class T, size_t N > class tuple_size< array<T, N> > : public integral_constant<size_t, N> { }; | (1) | (since C++11) |
Provides access to the number of elements in an std::array
as a compile-time constant expression.
value
[static] | N , the number of elements in the array (public static member constant) |
operator std::size_t | converts the object to std::size_t , returns value (public member function) |
operator()
(C++14) | returns value (public member function) |
Type | Definition |
---|---|
value_type | std::size_t |
type | std::integral_constant<std::size_t, value> |
#include <iostream> #include <array> template<class T> void test(T t) { int a[std::tuple_size<T>::value]; // can be used at compile time std::cout << std::tuple_size<T>::value << '\n'; } int main() { std::array<float, 3> arr; test(arr); }
Output:
3
obtains the size of tuple at compile time (class template specialization) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/container/array/tuple_size