| 218 | |
| 219 | template <class _Sexpr> |
| 220 | static auto get_env(_Sexpr const & __sexpr) noexcept -> env_of_t<__child_of<_Sexpr>> |
| 221 | { |
| 222 | static_assert(sender_for<_Sexpr, transform_each_t>); |
| 223 | return __apply([]<class _Child>(__ignore, __ignore, _Child const & __child) |
| 224 | { return STDEXEC::get_env(__child); }, |
| 225 | __sexpr); |
| 226 | } |
| 227 | }; |
| 228 | } // namespace __transform_each |
| 229 |