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

Method execute_

include/exec/static_thread_pool.hpp:1601–1605  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1599 class item_operation : task_base
1600 {
1601 static void execute_(task_base* base, std::uint32_t /* tid */) noexcept
1602 {
1603 auto op = static_cast<item_operation*>(base);
1604 STDEXEC::set_value(static_cast<ItemReceiver&&>(op->item_receiver_), *op->it_);
1605 }
1606
1607 ItemReceiver item_receiver_;
1608 std::ranges::iterator_t<Range> it_;

Callers 4

runMethod · 0.80
enqueueMethod · 0.80
enqueueMethod · 0.80
enqueueMethod · 0.80

Calls 1

set_valueFunction · 0.85

Tested by

no test coverage detected