tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
regular.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_CONCEPTS_REGULAR_HPP
5#define TETL_CONCEPTS_REGULAR_HPP
6
7#include <etl/_concepts/equality_comparable.hpp>
8#include <etl/_concepts/semiregular.hpp>
9
10namespace etl {
11
12/// \ingroup concepts
13template <typename T>
14concept regular = etl::semiregular<T> and etl::equality_comparable<T>;
15
16} // namespace etl
17
18#endif // TETL_CONCEPTS_REGULAR_HPP
Definition adjacent_find.hpp:9