tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
tie.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_TUPLE_TIE_HPP
4#define TETL_TUPLE_TIE_HPP
5
7
8namespace etl {
9
10template <typename... Args>
11constexpr auto tie(Args&... args) noexcept -> tuple<Args&...>
12{
13 return {args...};
14}
15
16} // namespace etl
17
18#endif // TETL_TUPLE_TIE_HPP
Definition adjacent_find.hpp:8
constexpr auto tie(Args &... args) noexcept -> tuple< Args &... >
Definition tie.hpp:11
Definition tuple.hpp:107