Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::tuple_size<std::array>

      From cppreference.com
      <cpp‎ |container‎ |array
       
       
       
       
      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 anstd::array as a compile-time constant expression.

      Contents

      [edit]Helper variable template

      template<class T>
      constexprstd::size_t tuple_size_v= tuple_size<T>::value;
      (since C++17)

      Inherited fromstd::integral_constant

      Member constants

      value
      [static]
      N, the number of elements in the array
      (public static member constant)

      Member functions

      operator std::size_t
      converts the object tostd::size_t, returnsvalue
      (public member function)
      operator()
      (C++14)
      returnsvalue
      (public member function)

      Member types

      Type Definition
      value_typestd::size_t
      typestd::integral_constant<std::size_t, value>

      [edit]Example

      Run this code
      #include <array> int main(){auto arr=std::to_array("ABBA");    static_assert(std::tuple_size<decltype(arr)>{}==5);}

      [edit]See also

      Structured binding(C++17) binds the specified names to sub-objects or tuple elements of the initializer[edit]
      (C++11)
      obtains the number of elements of a tuple-like type
      (class template)[edit]
      obtains the size of

      atuple
      (class template specialization)[edit]

      obtains the size of apair
      (class template specialization)[edit]
      obtains the size of astd::ranges::subrange
      (class template specialization)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/container/array/tuple_size&oldid=176448"

      [8]ページ先頭

      ©2009-2025 Movatter.jp