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

Function __bind_back

include/stdexec/functional.hpp:369–374  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

367
368 template <class... _BoundArgs, class _Fn>
369 constexpr auto __bind_back(_Fn &&__fn, _BoundArgs... __bound_args)
370 noexcept(__nothrow_move_constructible<_BoundArgs...> && __nothrow_decay_copyable<_Fn>)
371 {
372 using __binder_t = __back_binder<__decay_t<_Fn>, _BoundArgs...>;
373 return __binder_t{static_cast<_Fn &&>(__fn), static_cast<_BoundArgs &&>(__bound_args)...};
374 };
375} // namespace STDEXEC

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected