Namespaces
Variants
Views
Actions

std::tuple_element<std::span>

From cppreference.com
< cpp‎ | container‎ | span
Defined in header <span>
template< std::size_t I, class T, std::size_t N >
struct tuple_element<I, std::span<T, N> >;
(since C++20)

Provides compile-time indexed access to the type of the elements of the span using tuple-like interface. The program is ill-formed if I >= N or if N == std::dynamic_extent.

[edit] Member types

Member type Definition
type the type of elements of the span, i.e., T

[edit] Example

[edit] See also

obtains the type of the specified element
(class template specialization) [edit]
obtains the type of the elements of pair
(class template specialization) [edit]
obtains the type of the elements of array
(class template specialization) [edit]