std::get(std::tuple)
From cppreference.com
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Utilities library
Relational operators (deprecated in C++20)
Integer comparison functions
Swap and type operations
Common vocabulary types
Type support (basic types, RTTI)
Library feature-test macros (C++20)
(C++11)
(C++20)
(C++26)
(C++20)
Coroutine support (C++20)
Contract support (C++26)
(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
(C++20)
std::tuple
(until C++20)(until C++20)(until C++20)(until C++20)(until C++20)(C++20)
get(std::tuple)
(C++23)
(C++23)
(C++23)
Deduction guides (C++17)
Defined in header
<tuple>
template< std::size_t I, class... Types >
(1)
(since C++11) typename std::tuple_element <I, std::tuple <Types...>>::type&
(constexpr since C++14)
template< std::size_t I, class... Types >
(2)
(since C++11) typename std::tuple_element <I, std::tuple <Types...>>::type&&
(constexpr since C++14)
template< std::size_t I, class... Types >
(3)
(since C++11) const typename std::tuple_element <I, std::tuple <Types...>>::type&
(constexpr since C++14)
template< std::size_t I, class... Types >
(4)
(since C++11) const typename std::tuple_element <I, std::tuple <Types...>>::type&&
(constexpr since C++14)
template< class T, class... Types >
constexpr T& get( std::tuple <Types...>& t ) noexcept;
(5)
(since C++14)
constexpr T& get( std::tuple <Types...>& t ) noexcept;
template< class T, class... Types >
constexpr T&& get( std::tuple <Types...>&& t ) noexcept;
(6)
(since C++14)
constexpr T&& get( std::tuple <Types...>&& t ) noexcept;
template< class T, class... Types >
constexpr const T& get( const std::tuple <Types...>& t ) noexcept;
(7)
(since C++14)
constexpr const T& get( const std::tuple <Types...>& t ) noexcept;
template< class T, class... Types >
constexpr const T&& get( const std::tuple <Types...>&& t ) noexcept;
(8)
(since C++14)
constexpr const T&& get( const std::tuple <Types...>&& t ) noexcept;
1-4) Extracts the Ith element from the tuple. I must be an integer value in
[
0,
sizeof...(Types))
.5-8) Extracts the element of the tuple t whose type is
T
. Fails to compile unless the tuple has exactly one element of that type.[edit] Parameters
t
-
tuple whose contents to extract
[edit] Return value
A reference to the selected element of t.
[edit] Notes
Feature-test macro | Value | Std | Feature |
---|---|---|---|
__cpp_lib_tuples_by_type |
201304L |
(C++14) | Addressing tuples by type (5-8) |
[edit] Example
Run this code
#include <cassert> #include <iostream> #include <string> #include <tuple> int main() { auto x = std::make_tuple (1, "Foo", 3.14); // Index-based access std::cout << "( " << std::get<0>(x) << ", " << std::get<1>(x) << ", " << std::get<2>(x) << " )\n"; // Type-based access (since C++14) std::cout << "( " << std::get<int>(x) << ", " << std::get<const char*>(x) << ", " << std::get<double>(x) << " )\n"; const std::tuple <int, const int, double, double> y(1, 2, 6.9, 9.6); const int& i1 = std::get<int>(y); // OK: not ambiguous assert (i1 == 1); const int& i2 = std::get<const int>(y); // OK: not ambiguous assert (i2 == 2); // const double& d = std::get<double>(y); // Error: ill-formed (ambiguous) // Note: std::tie and structured binding can be // used to unpack a tuple into individual objects. }
Output:
( 1, Foo, 3.14 ) ( 1, Foo, 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 tuple&& | added these overloads ((4) and (8)) |
[edit] See also
(C++17)
(function template) [edit]
(C++26)
(function template) [edit]
(C++11)
(function template) [edit]
Structured binding (C++17)
binds the specified names to sub-objects or tuple elements of the initializer[edit]