@@ -131,7 +131,7 @@ namespace exec {
131131 };
132132
133133 template <class ... _Args>
134- using drop = __types <>;
134+ using drop = __mlist <>;
135135
136136 enum class __completion_t {
137137 __started,
@@ -755,7 +755,7 @@ namespace exec {
755755 template <class ... _Senders>
756756 using __f = __minvoke_if_c<
757757 __arg_of_base_t <_Env...>::template __valid_args<_Senders...>(),
758- __mconst<STDEXEC::__types <_Senders...>>,
758+ __mconst<STDEXEC::__mlist <_Senders...>>,
759759 __value_completions_error<_Sequence, _Sender, _Env...>,
760760 _Senders...
761761 >;
@@ -770,9 +770,9 @@ namespace exec {
770770 // if set_value
771771 __arg_of_t <_Sequence, _Sender, _Env...>::template __f,
772772 // else remove
773- STDEXEC::__mconst<STDEXEC::__types <>>::__f,
774- // concat to __types result
775- STDEXEC::__mconcat<STDEXEC::__qq<STDEXEC::__types >>::__f
773+ STDEXEC::__mconst<STDEXEC::__mlist <>>::__f,
774+ // concat to __mlist result
775+ STDEXEC::__mconcat<STDEXEC::__qq<STDEXEC::__mlist >>::__f
776776 >;
777777 };
778778
@@ -786,9 +786,9 @@ namespace exec {
786786 struct __nested_sequences_fn {
787787 template <class ... _Senders>
788788 using __f = __mapply<
789- STDEXEC::__munique<STDEXEC::__qq<__types >>,
789+ STDEXEC::__munique<STDEXEC::__qq<__mlist >>,
790790 STDEXEC::__minvoke<
791- STDEXEC::__mconcat<STDEXEC::__qq<__types >>,
791+ STDEXEC::__mconcat<STDEXEC::__qq<__mlist >>,
792792 __minvoke_q<__nested_sequences_from_item_type_t , _Sequence, _Senders, _Env...>...
793793 >
794794 >;
@@ -806,7 +806,7 @@ namespace exec {
806806 struct __all_nested_values_fn {
807807 template <class ... _Sequences>
808808 using __f = STDEXEC::__minvoke<
809- STDEXEC::__mconcat<STDEXEC::__qq<STDEXEC::__types >>,
809+ STDEXEC::__mconcat<STDEXEC::__qq<STDEXEC::__mlist >>,
810810 __item_types_of_t <_Sequences, _Env...>...
811811 >;
812812 };
@@ -824,15 +824,15 @@ namespace exec {
824824 template <class _Sender >
825825 using __f = STDEXEC::__error_types_t <
826826 __completion_signatures_of_t <_Sender, _Env...>,
827- STDEXEC::__qq<STDEXEC::__types >
827+ STDEXEC::__qq<STDEXEC::__mlist >
828828 >;
829829 };
830830
831831 template <class _Senders , class ... _Env>
832832 using __error_types_t = __mapply<
833833 STDEXEC::__mtransform<
834834 __error_types_fn<_Env...>,
835- STDEXEC::__mconcat<STDEXEC::__qq<STDEXEC::__types >>
835+ STDEXEC::__mconcat<STDEXEC::__qq<STDEXEC::__mlist >>
836836 >,
837837 _Senders
838838 >;
@@ -848,9 +848,9 @@ namespace exec {
848848
849849 template <class _Sequence , class ... _Env>
850850 using __errors_t = STDEXEC::__minvoke<
851- STDEXEC::__mconcat<STDEXEC::__qq<STDEXEC::__types >>,
851+ STDEXEC::__mconcat<STDEXEC::__qq<STDEXEC::__mlist >>,
852852 // always include std::exception_ptr
853- STDEXEC::__types <std::exception_ptr>,
853+ STDEXEC::__mlist <std::exception_ptr>,
854854 // include errors from senders of the nested sequences
855855 __error_types_t <__item_types_of_t <_Sequence, _Env...>, _Env...>,
856856 // include errors from the nested sequences
0 commit comments