tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
incrementable.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_ITERATOR_INCREMENTABLE_HPP
4#define TETL_ITERATOR_INCREMENTABLE_HPP
5
9
10namespace etl {
11
12// clang-format off
13template <typename T>
15 { i++ } -> etl::same_as<T>;
16};
17// clang-format on
18
19} // namespace etl
20
21#endif // TETL_ITERATOR_INCREMENTABLE_HPP
Definition incrementable.hpp:14
Definition regular.hpp:13
The concept same_as<T, U> is satisfied if and only if T and U denote the same type....
Definition same_as.hpp:19
Definition weakly_incrementable.hpp:16
Definition adjacent_find.hpp:8