std::tie
From cppreference.com
Defined in header <tuple>
|
||
template< class... Types > std::tuple<Types&...> tie( Types&... args ) noexcept; |
(since C++11) (until C++14) |
|
template< class... Types > constexpr std::tuple<Types&...> tie( Types&... args ) noexcept; |
(since C++14) | |
Creates a tuple of lvalue references to its arguments or instances of std::ignore.
Parameters
args | - | zero or more lvalue arguments to construct the tuple from. |
Return value
A std::tuple object containing lvalue references.
Possible implementation
template <typename... Args> constexpr // since C++14 std::tuple<Args&...> tie(Args&... args) noexcept { return {args...}; } |
Notes
std::tie
may be used to unpack a std::pair because std::tuple has a converting assignment from pairs:
bool result; std::tie(std::ignore, result) = set.insert(value);
Example
1) std::tie
can be used to introduce lexicographical comparison to a struct or to unpack a tuple;
2) std::tie
can work with structured bindings:
Run this code
#include <cassert> #include <iostream> #include <set> #include <string> #include <tuple> struct S { int n; std::string s; float d; bool operator<(const S& rhs) const { // compares n to rhs.n, // then s to rhs.s, // then d to rhs.d return std::tie(n, s, d) < std::tie(rhs.n, rhs.s, rhs.d); } }; int main() { // Lexicographical comparison demo: // std::set<S> set_of_s; // S is LessThanComparable S value{42, "Test", 3.14}; std::set<S>::iterator iter; bool inserted; // unpacks the return value of insert into iter and inserted std::tie(iter, inserted) = set_of_s.insert(value); assert(inserted); // std::tie may work together with C++17 structured bindings: // auto position = [](int w) { return std::tuple<int, int>{ 1 * w, 2 * w }; }; auto [x, y] = position(1); assert(x == 1 and y == 2); // ... std::tie(x, y) = position(2); // reuse x, y with tie assert(x == 2 and y == 4); // sub-types that are returned by a callable may differ auto coordinates = [] { return std::tuple<char, short>(6, 9); }; // ... std::tie(x, y) = coordinates(); // implicit conversions assert(x == 6 and y == 9); }
See also
Structured binding (C++17) | binds the specified names to sub-objects or tuple elements of the initializer |
(C++11) |
creates a tuple object of the type defined by the argument types (function template) |
(C++11) |
creates a tuple of forwarding references (function template) |
(C++11) |
creates a tuple by concatenating any number of tuples (function template) |
(C++11) |
placeholder to skip an element when unpacking a tuple using tie (constant) |