std::tuple_element<std::experimental::ranges::tagged>

From cppreference.com
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Concepts (concepts TS)
Ranges (ranges TS)
Special mathematical functions (special math TR)
 
 
General utilities library
Utility components
Function objects
Metaprogramming and type traits
Tagged pairs and tuples
                                        
                                        
                                        
                                        
 
 
template< std::size_t N, class Base, class... Tags >

struct tuple_element<N, std::experimental::ranges::tagged<Base, Tags...>>

  : std::tuple_element<N, Base> { };
(ranges TS)

The partial specialization of std::tuple_element for tagged provide compile-time access to the types of the tagged's elements, using tuple-like syntax. It simply forwards to std::tuple_element<N, Base>.

Member types

Member type Definition
type std::tuple_element_t<N, Base>

See also

obtains the type of the specified element
(class template specialization)
obtains the type of the elements of array
(class template specialization)
obtains the type of the elements of pair
(class template specialization)
obtains the size of a tagged
(class template specialization)