proxygen
folly::pushmi::make_flow_many_sender_fn Struct Reference

#include <flow_many_sender.h>

Inheritance diagram for folly::pushmi::make_flow_many_sender_fn:
folly::pushmi::construct_deduced< flow_many_sender > folly::pushmi::detail::make_sender< is_many<>, false, false, true >

Public Member Functions

auto operator() () const
 
requires True PUSHMI_BROKEN_SUBSUMPTION not auto operator() (SF sf) const
 
requires True &&Invocable< EXF & > PUSHMI_BROKEN_SUBSUMPTION not auto operator() (SF sf, EXF exf) const
 
requires True &&Sender< Data, is_many<>, is_flow<> > auto operator() (Data d) const
 
requires Sender< Data, is_many<>, is_flow<> > auto operator() (Data d, DSF sf) const
 
requires Sender< Data, is_many<>, is_flow<> > &&Invocable< DEXF &, Data & > auto operator() (Data d, DSF sf, DEXF exf) const
 

Detailed Description

Definition at line 184 of file flow_many_sender.h.

Member Function Documentation

auto folly::pushmi::make_flow_many_sender_fn::operator() ( ) const
inline

Definition at line 185 of file flow_many_sender.h.

References PUSHMI_BROKEN_SUBSUMPTION, folly::pushmi::PUSHMI_TEMPLATE(), and folly::pushmi::requires().

185  {
186  return flow_many_sender<ignoreSF, trampolineEXF>{};
187  }
requires True PUSHMI_BROKEN_SUBSUMPTION not auto folly::pushmi::make_flow_many_sender_fn::operator() ( SF  sf) const
inline

Definition at line 190 of file flow_many_sender.h.

References folly::gen::move, PUSHMI_BROKEN_SUBSUMPTION, folly::pushmi::PUSHMI_TEMPLATE(), and folly::pushmi::requires().

190  {
191  return flow_many_sender<SF, trampolineEXF>{std::move(sf)};
192  }
constexpr detail::Map< Move > move
Definition: Base-inl.h:2567
requires True&& Invocable<EXF&> PUSHMI_BROKEN_SUBSUMPTION not auto folly::pushmi::make_flow_many_sender_fn::operator() ( SF  sf,
EXF  exf 
) const
inline

Definition at line 195 of file flow_many_sender.h.

References folly::gen::move, folly::pushmi::PUSHMI_TEMPLATE(), and folly::pushmi::requires().

195  {
196  return flow_many_sender<SF, EXF>{std::move(sf), std::move(exf)};
197  }
constexpr detail::Map< Move > move
Definition: Base-inl.h:2567
requires True&& Sender<Data, is_many<>, is_flow<> > auto folly::pushmi::make_flow_many_sender_fn::operator() ( Data  d) const
inline

Definition at line 200 of file flow_many_sender.h.

References folly::gen::move, folly::pushmi::PUSHMI_TEMPLATE(), and folly::pushmi::requires().

200  {
201  return flow_many_sender<Data, passDSF, passDEXF>{std::move(d)};
202  }
constexpr detail::Map< Move > move
Definition: Base-inl.h:2567
requires Sender<Data, is_many<>, is_flow<> > auto folly::pushmi::make_flow_many_sender_fn::operator() ( Data  d,
DSF  sf 
) const
inline

Definition at line 205 of file flow_many_sender.h.

References folly::gen::move, folly::pushmi::PUSHMI_TEMPLATE(), and folly::pushmi::requires().

205  {
206  return flow_many_sender<Data, DSF, passDEXF>{std::move(d), std::move(sf)};
207  }
constexpr detail::Map< Move > move
Definition: Base-inl.h:2567
requires Sender<Data, is_many<>, is_flow<> >&& Invocable<DEXF&, Data&> auto folly::pushmi::make_flow_many_sender_fn::operator() ( Data  d,
DSF  sf,
DEXF  exf 
) const
inline

Definition at line 210 of file flow_many_sender.h.

References folly::pushmi::make_flow_many_sender, folly::gen::move, PUSHMI_BROKEN_SUBSUMPTION, folly::pushmi::PUSHMI_TEMPLATE(), and folly::pushmi::requires().

210  {
211  return flow_many_sender<Data, DSF, DEXF>{std::move(d), std::move(sf), std::move(exf)};
212  }
constexpr detail::Map< Move > move
Definition: Base-inl.h:2567

The documentation for this struct was generated from the following file: