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

Function submit

include/concurrencpp/executors/executor.h:134–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132
133 template<class callable_type, class... argument_types>
134 auto submit(callable_type&& callable, argument_types&&... arguments) {
135 return do_submit<executor>(std::forward<callable_type>(callable), std::forward<argument_types>(arguments)...);
136 }
137
138 template<class callable_type>
139 void bulk_post(std::span<callable_type> callable_list) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected