Difference between revisions of "cpp/container/array/tuple element"
From cppreference.com
m (Text replace - "{{tdcl" to "{{dcl") |
m (Text replace - "/sidebar" to "/navbar") |
||
Line 1: | Line 1: | ||
{{cpp/title|tuple_element{{small|<std::array>}}}} | {{cpp/title|tuple_element{{small|<std::array>}}}} | ||
− | {{cpp/container/array/ | + | {{cpp/container/array/navbar}} |
{{ddcl list begin}} | {{ddcl list begin}} | ||
{{ddcl list header | array}} | {{ddcl list header | array}} |
Revision as of 12:28, 15 June 2012
Template:ddcl list begin <tr class="t-dsc-header">
<td>Defined in header
</td>
<array>
<td></td> <td></td> </tr> <tr class="t-dcl ">
<td >template< std::size_t I, class T, std::size_t N >
struct tuple_element<I, array<T, N> >;
</td>
struct tuple_element<I, array<T, N> >;
<td class="t-dcl-nopad"> </td> <td > (since C++11) </td> </tr> Template:ddcl list end
Provides compile-type indexed access to the type of the elements of the array using tuple-like interface
Contents |
Member types
Member type | Definition |
type | the type of elements of the array |
Possible implementation
Example
This section is incomplete Reason: no example |
See also
obtains the type of the specified element (class template specialization) | |
obtains the type of the elements of pair (class template specialization) |