std::get(std::pair)
Defined in header <utility>
|
||
(1) | ||
template< std::size_t I, class T1, class T2 > typename std::tuple_element<I, std::pair<T1,T2> >::type& |
(since C++11) (until C++14) |
|
template< std::size_t I, class T1, class T2 > constexpr std::tuple_element_t<I, std::pair<T1,T2> >& |
(since C++14) | |
(2) | ||
template< std::size_t I, class T1, class T2 > const typename std::tuple_element<I, std::pair<T1,T2> >::type& |
(since C++11) (until C++14) |
|
template< std::size_t I, class T1, class T2 > constexpr const std::tuple_element_t<I, std::pair<T1,T2> >& |
(since C++14) | |
(3) | ||
template< std::size_t I, class T1, class T2 > typename std::tuple_element<I, std::pair<T1,T2> >::type&& |
(since C++11) (until C++14) |
|
template< std::size_t I, class T1, class T2 > constexpr std::tuple_element_t<I, std::pair<T1,T2> >&& |
(since C++14) | |
(4) | ||
template< std::size_t I, class T1, class T2 > const typename std::tuple_element<I, std::pair<T1,T2> >::type&& |
(since C++11) (until C++14) |
|
template< std::size_t I, class T1, class T2 > constexpr const std::tuple_element_t<I, std::pair<T1,T2> >&& |
(since C++14) | |
template <class T, class U> constexpr T& get(std::pair<T, U>& p) noexcept; |
(5) | (since C++14) |
template <class T, class U> constexpr const T& get(const std::pair<T, U>& p) noexcept; |
(6) | (since C++14) |
template <class T, class U> constexpr T&& get(std::pair<T, U>&& p) noexcept; |
(7) | (since C++14) |
template <class T, class U> constexpr const T&& get(const std::pair<T, U>&& p) noexcept; |
(8) | (since C++14) |
template <class T, class U> constexpr T& get(std::pair<U, T>& p) noexcept; |
(9) | (since C++14) |
template <class T, class U> constexpr const T& get(const std::pair<U, T>& p) noexcept; |
(10) | (since C++14) |
template <class T, class U> constexpr T&& get(std::pair<U, T>&& p) noexcept; |
(11) | (since C++14) |
template <class T, class U> constexpr const T&& get(const std::pair<U, T>&& p) noexcept; |
(12) | (since C++14) |
Extracts an element from the pair using tuple-like interface.
The index-based overloads (1-4) fail to compile if the index I
is neither 0 nor 1.
The type-based overloads (5-12) fail to compile if the types T
and U
are the same.
Contents |
[edit] Parameters
p | - | pair whose contents to extract |
[edit] Return value
p.first
if I==0
and a reference to p.second
if I==1
.p.first
.p.second
.[edit] Example
Output:
(1, 3.14) (1, 3.14)
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 2485 | C++11 (by index) C++14 (by type) |
there are no overloads for const pair&& | the overloads are added |
[edit] See also
Structured binding (C++17) | binds the specified names to sub-objects or tuple elements of the initializer |
(C++11) |
tuple accesses specified element (function template) |
(C++11) |
accesses an element of an array (function template) |
(C++17) |
reads the value of the variant given the index or the type (if the type is unique), throws on error (function template) |
(C++20) |
obtains iterator or sentinel from a std::ranges::subrange (function template) |