Template Struct sender_to

Struct Documentation

template<typename S, typename R>
struct sender_to

Concept that brings together a sender and a receiver.

This concept extends the

sender concept, and ensures that it can connect to the given receiver type. It does that by checking if concore::connect() is valid for the given types.
Template Parameters
  • S: The type of sender that is assessed

  • R: The type of receiver that the sender must conform to

See

sender, receiver