tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
dangling.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_RANGES_DANGLING_HPP
4#define TETL_RANGES_DANGLING_HPP
5
6namespace etl::ranges {
7
9struct dangling {
10 constexpr dangling() noexcept = default;
11
12 template <typename... Args>
13 constexpr dangling(Args&&... /*args*/) noexcept
14 {
15 }
16};
17
18} // namespace etl::ranges
19
20#endif // TETL_RANGES_DANGLING_HPP
Definition ranges_in_fun_result.hpp:11
constexpr dangling() noexcept=default