tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
range.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2023 Tobias Hienzsch
3
4#ifndef TETL_RANGES_RANGE_HPP
5#define TETL_RANGES_RANGE_HPP
6
7#include <etl/_ranges/begin.hpp>
8#include <etl/_ranges/end.hpp>
9
10namespace etl::ranges {
11
12/// \ingroup ranges
13template <typename T>
14concept range = requires(T& t) {
17};
18
19} // namespace etl::ranges
20
21#endif // TETL_RANGES_RANGE_HPP
constexpr auto end
Definition end.hpp:57
constexpr auto begin
Definition begin.hpp:62
Definition ranges_in_fun_result.hpp:12
Definition adjacent_find.hpp:9