Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/container/array/tuple element"

From cppreference.com
< cpp‎ | container‎ | array
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/sidebar}}
+
{{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 <array>
</td>

<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>

<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

Template:eq fun cpp

Example

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]