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

Function post

include/concurrencpp/executors/executor.h:129–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127
128 template<class callable_type, class... argument_types>
129 void post(callable_type&& callable, argument_types&&... arguments) {
130 return do_post<executor>(std::forward<callable_type>(callable), std::forward<argument_types>(arguments)...);
131 }
132
133 template<class callable_type, class... argument_types>
134 auto submit(callable_type&& callable, argument_types&&... arguments) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected