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// SPDX-FileCopyrightText: Copyright (C) 2024 Tobias Hienzsch
3
4#ifndef TETL_RANGES_DANGLING_HPP
5#define TETL_RANGES_DANGLING_HPP
6
7namespace etl::ranges {
8
9/// \ingroup ranges
10struct dangling {
11 constexpr dangling() noexcept = default;
12
13 template <typename... Args>
14 constexpr dangling(Args&&... /*args*/) noexcept
15 {
16 }
17};
18
19} // namespace etl::ranges
20
21#endif // TETL_RANGES_DANGLING_HPP
Definition ranges_in_fun_result.hpp:12
Definition adjacent_find.hpp:9
Definition dangling.hpp:10
constexpr dangling() noexcept=default
constexpr dangling(Args &&...) noexcept
Definition dangling.hpp:14