tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
is_execution_policy.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_EXECUTION_IS_EXECUTION_POLICY_HPP
5#define TETL_EXECUTION_IS_EXECUTION_POLICY_HPP
6
7#include <etl/_type_traits/bool_constant.hpp>
8
9namespace etl {
10
11/// Checks whether T is a standard or implementation-defined execution policy type.
12/// \ingroup execution
13template <typename T>
14struct is_execution_policy : etl::false_type { };
15
16/// \relates is_execution_policy
17/// \ingroup execution
18template <typename T>
20
21} // namespace etl
22
23#endif // TETL_EXECUTION_IS_EXECUTION_POLICY_HPP
constexpr bool is_execution_policy_v
Definition is_execution_policy.hpp:19
Definition adjacent_find.hpp:9
Checks whether T is a standard or implementation-defined execution policy type.
Definition is_execution_policy.hpp:14