Defined in header <array> | ||
---|---|---|
template< class T, std::size_t N > struct tuple_size< std::array<T, N> > : std::integral_constant<std::size_t, N> { }; | (since C++11) |
Provides access to the number of elements in an std::array
as a compile-time constant expression.
template< class T > inline constexpr std::size_t tuple_size_v = tuple_size<T>::value; | (since C++17) |
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 <array> int main() { auto arr = std::to_array("ABBA"); static_assert(std::tuple_size<decltype(arr)>{} == 5); }
Structured binding (C++17) | binds the specified names to sub-objects or tuple elements of the initializer |
(C++11) | obtains the size of tuple at compile time (class template specialization) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/container/array/tuple_size