Template Function concore::v1::bulk_execute

Function Documentation

template<typename Executor, typename Ftor, typename Num>
void concore::v1::bulk_execute(Executor &&e, Ftor &&f, Num n)

Customization point object that can be used to bulk_execute work on executors.

This will tell the executor object to invoke the given functor, according to the rules defined in the executor.

Parameters
  • e: The executor object we are using for our execution

  • f: The functor to be invoked

  • n: The number of times we have to invoke the functor

See

concore::execute()