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
3#ifndef TETL_RANGES_RANGE_HPP
4#define TETL_RANGES_RANGE_HPP
5
7#include <etl/_ranges/end.hpp>
8
9namespace etl::ranges {
10
12template <typename T>
13concept range = requires(T& t) {
16};
17
18} // namespace etl::ranges
19
20#endif // TETL_RANGES_RANGE_HPP
Definition range.hpp:13
constexpr auto end
Definition end.hpp:56
constexpr auto begin
Definition begin.hpp:61
Definition ranges_in_fun_result.hpp:11