oveRTOS C++ API
C++20 RAII wrappers for the oveRTOS C API
Loading...
Searching...
No Matches
ove::WorkHandler Concept Reference

Concept satisfied by any callable convertible to ove_work_fn. More...

#include <workqueue.hpp>

Concept definition

template<typename F>
concept ove::WorkHandler = std::convertible_to<F, ove_work_fn>
Concept satisfied by any callable convertible to ove_work_fn.
Definition workqueue.hpp:31

Detailed Description

Concept satisfied by any callable convertible to ove_work_fn.

Used to constrain the handler template parameter of Work.

Template Parameters
FThe callable type to check.