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