std::tuple_size(std::array) (3) Linux Manual Page
std::tuple_size(std::array) – std::tuple_size(std::array) Synopsis Defined in header <array> template< class T, size_t N > class tuple_size< array<T, N> > : (1) (since C++11) public integral_constant<size_t, N> { }; Provides access to the number of elements in an std::array as a compile-time constant expression. Inherited from std::integral_constant Member constants value N, the number of elements in…
