MCPcopy Create free account
hub / github.com/David-Haim/concurrencpp / post

Function post

include/concurrencpp/executors/derivable_executor.h:14–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12
13 template<class callable_type, class... argument_types>
14 void post(callable_type&& callable, argument_types&&... arguments) {
15 return do_post<concrete_executor_type>(std::forward<callable_type>(callable), std::forward<argument_types>(arguments)...);
16 }
17
18 template<class callable_type, class... argument_types>
19 auto submit(callable_type&& callable, argument_types&&... arguments) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected