template <typename NonBlockingOneWayExecutor,
typename F,
typename... Ts>
inline auto post_dispatch(
int,
NonBlockingOneWayExecutor&& exec,
F&& f,
Ts&&... ts)
-> decltype(exec.post(
static_cast<decltype(f)&&>(f),
static_cast<decltype(ts)&&>(ts)...))
template <typename NonBlockingOneWayExecutor,
typename F,
typename... Ts>
inline auto post_dispatch(
int,
NonBlockingOneWayExecutor&& exec,
F&& f,
Ts&&... ts)
-> decltype(exec.post(
static_cast<decltype(f)&&>(f),
static_cast<decltype(ts)&&>(ts)...))Declared at: libs/pika/execution/include/pika/execution/executors/execution.hpp:498
Parameters
- int
- NonBlockingOneWayExecutor&& exec
- F&& f
- Ts&&... ts