YOrch 1.0.0
Loading...
Searching...
No Matches
common.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <type_traits>
4
5namespace yorch::detail {
6
7template <typename>
8inline constexpr bool bind_tasks_always_false_v = false;
9
10template <typename Task>
12 requires {
13 typename std::remove_cvref_t<Task>::raw_result_type;
14 };
15
16} // namespace yorch::detail
constexpr bool bind_tasks_always_false_v
Definition common.hpp:8