MCPcopy Create free account
hub / github.com/bloomberg/quantum / postFirst

Method postFirst

quantum/impl/quantum_context_impl.h:314–321  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

312template <class RET>
313template <class OTHER_RET, class FUNC, class ... ARGS>
314auto
315ICoroContext<RET>::postFirst(FUNC&& func, ARGS&&... args)->CoroContextPtr<decltype(coroResult(func))>
316{
317 using Ret = decltype(coroResult(func));
318 return static_cast<Impl*>(this)->template postFirst<Ret>(
319 std::forward<FUNC>(func),
320 std::forward<ARGS>(args)...);
321}
322
323template <class RET>
324template <class OTHER_RET, class FUNC, class ... ARGS>

Callers 1

TEST_PFunction · 0.45

Calls

no outgoing calls

Tested by 1

TEST_PFunction · 0.36