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

Method query

include/exec/thread_pool_base.hpp:446–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

444 template <STDEXEC::__forwarding_query Tag, class... As>
445 requires STDEXEC::__queryable_with<STDEXEC::env_of_t<Sender>, Tag, As...>
446 auto query(Tag, As&&... as) const
447 noexcept(STDEXEC::__nothrow_queryable_with<STDEXEC::env_of_t<Sender>, Tag, As...>)
448 -> decltype(auto)
449 {
450 return STDEXEC::__query<Tag>()(STDEXEC::get_env(sndr_.sndr_), static_cast<As&&>(as)...);
451 }
452
453 bulk_sender const & sndr_;
454 };

Callers

nothing calls this directly

Calls 1

get_envFunction · 0.70

Tested by

no test coverage detected