Mandates: callable<QueryTag, prop-like<ValueType>>
is modeled,
where prop-like is the following exposition-only class template:
template<class ValueType>structprop-like{// exposition onlyconst ValueType& query(auto)constnoexcept;
};
[Example 1: template<sender Sndr>
sender auto parameterize_work(Sndr sndr){// Make an environment such that get_allocator(env) returns a reference to a copy of my_alloc{}.auto e = prop(get_allocator, my_alloc{});
// Parameterize the input sender so that it will use our custom execution environment.return write_env(sndr, e);
} — end example]