Template Struct executor_of

Struct Documentation

template<typename E, typename F>
struct executor_of

Defines an executor that can execute a given functor type.

This is similar to the

executor concept, but instead of being capable of executing void() functors, this can execute functors of the given type F
Template Parameters
  • E: The type that we want to model the concept

  • F: The type functor that can be called by the executor

See

executor