tmp/tmpthbo7cqa/{from.md → to.md}
RENAMED
|
@@ -36,13 +36,11 @@ variable).
|
|
| 36 |
``` cpp
|
| 37 |
template<class... TTypes>
|
| 38 |
constexpr tuple<TTypes&...> tie(TTypes&... t) noexcept;
|
| 39 |
```
|
| 40 |
|
| 41 |
-
*Returns:* `tuple<TTypes&...>(t...)`.
|
| 42 |
-
`ignore`, assigning any value to the corresponding tuple element has no
|
| 43 |
-
effect.
|
| 44 |
|
| 45 |
[*Example 2*:
|
| 46 |
|
| 47 |
`tie` functions allow one to create tuples that unpack tuples into
|
| 48 |
variables. `ignore` can be used for elements that are not needed:
|
|
|
|
| 36 |
``` cpp
|
| 37 |
template<class... TTypes>
|
| 38 |
constexpr tuple<TTypes&...> tie(TTypes&... t) noexcept;
|
| 39 |
```
|
| 40 |
|
| 41 |
+
*Returns:* `tuple<TTypes&...>(t...)`.
|
|
|
|
|
|
|
| 42 |
|
| 43 |
[*Example 2*:
|
| 44 |
|
| 45 |
`tie` functions allow one to create tuples that unpack tuples into
|
| 46 |
variables. `ignore` can be used for elements that are not needed:
|