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

Method finally

quantum/impl/quantum_context_impl.h:142–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140template <class RET>
141template <class OTHER_RET, class FUNC, class ... ARGS>
142auto
143IThreadContext<RET>::finally(FUNC&& func, ARGS&&... args)->ThreadContextPtr<decltype(coroResult(func))>
144{
145 using Ret = decltype(coroResult(func));
146 return static_cast<Impl*>(this)->template finally<Ret>(
147 std::forward<FUNC>(func),
148 std::forward<ARGS>(args)...);
149}
150
151template <class RET>
152template <class OTHER_RET, class FUNC, class ... ARGS>

Callers 1

TEST_PFunction · 0.80

Calls

no outgoing calls

Tested by 1

TEST_PFunction · 0.64