tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
copyable.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_CONCEPTS_COPYABLE_HPP
4#define TETL_CONCEPTS_COPYABLE_HPP
5
9
10namespace etl {
11
13template <typename T>
14concept copyable = //
16 movable<T> and //
20
21} // namespace etl
22
23#endif // TETL_CONCEPTS_COPYABLE_HPP
Definition assignable_from.hpp:19
The concept copy_constructible is satisfied if T is an lvalue reference type, or if it is a move_cons...
Definition copy_constructible.hpp:20
Definition copyable.hpp:14
Definition movable.hpp:15
Definition adjacent_find.hpp:8