MCPcopy Create free account
hub / github.com/NVIDIA/stdexec / apply

Function apply

include/exec/libdispatch_queue.hpp:408–413  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

406
407 template <class F>
408 void apply(F f)
409 {
410 std::visit([&](auto &tupl) -> void
411 { std::apply([&](auto &...args) -> void { f(args...); }, tupl); },
412 data_);
413 }
414
415 variant_t data_;
416 Receiver rcvr_;

Callers 9

__complete_Method · 0.70
applyMethod · 0.70
variant.cppFile · 0.50
startMethod · 0.50
startMethod · 0.50
startMethod · 0.50
set_valueMethod · 0.50
executeMethod · 0.50
startMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected