tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
referenceable.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_REFERENCEABLE_HPP
5#define TETL_CONCEPTS_REFERENCEABLE_HPP
6
7#include <etl/_type_traits/is_void.hpp>
8
9namespace etl {
10
11/// \note Non-standard extension
12/// \headerfile etl/concepts.hpp
13/// \ingroup concepts
14template <typename T>
15concept referenceable = not etl::is_void_v<T>;
16
17} // namespace etl
18
19#endif // TETL_CONCEPTS_REFERENCEABLE_HPP
Definition adjacent_find.hpp:9