@@ -57,14 +57,14 @@ template <class... _ValueTuples, class... _Errors, class... _Stopped>
5757struct __partitioned_completions <__type_list<_ValueTuples...>, __type_list<_Errors...>, __type_list<_Stopped...>>
5858{
5959 template <template <class ...> class _Tuple , template <class ...> class _Variant >
60- using __value_types _CCCL_NODEBUG_ALIAS =
60+ using __value_types _CCCL_NODEBUG =
6161 _Variant<::cuda::std::__type_call1<_ValueTuples, ::cuda::std::__type_quote<_Tuple>>...>;
6262
6363 template <template <class ...> class _Variant , template <class ...> class _Transform = ::cuda::std::__type_self_t >
64- using __error_types _CCCL_NODEBUG_ALIAS = _Variant<_Transform<_Errors>...>;
64+ using __error_types _CCCL_NODEBUG = _Variant<_Transform<_Errors>...>;
6565
6666 template <template <class ...> class _Variant , class _Type = set_stopped_t ()>
67- using __stopped_types _CCCL_NODEBUG_ALIAS = _Variant<__type_second<_Stopped, _Type>...>;
67+ using __stopped_types _CCCL_NODEBUG = _Variant<__type_second<_Stopped, _Type>...>;
6868
6969 using __count_values = ::cuda::std::integral_constant<size_t , sizeof ...(_ValueTuples)>;
7070 using __count_errors = ::cuda::std::integral_constant<size_t , sizeof ...(_Errors)>;
@@ -124,37 +124,37 @@ template <class _Partitioned>
124124_CCCL_HOST_DEVICE_API auto __unpack_partitioned_completions (::cuda::std::__undefined<_Partitioned>&) -> _Partitioned;
125125
126126template <class ... _Sigs>
127- using __partition_completion_signatures_t _CCCL_NODEBUG_ALIAS = //
127+ using __partition_completion_signatures_t _CCCL_NODEBUG = //
128128 decltype (execution::__unpack_partitioned_completions (
129129 (declval<::cuda::std::__undefined<__partitioned_completions<>>&>() * ... * static_cast <_Sigs*>(nullptr ))));
130130
131131template <class _Completions >
132- using __partitioned_completions_of_t _CCCL_NODEBUG_ALIAS = typename _Completions::__partitioned::type;
132+ using __partitioned_completions_of_t _CCCL_NODEBUG = typename _Completions::__partitioned::type;
133133
134134// //////////////////////////////////////////////////////////////////////////////////////////////////
135135// completion signatures type traits
136136template <class _Sigs , template <class ...> class _Tuple , template <class ...> class _Variant >
137- using __value_types _CCCL_NODEBUG_ALIAS =
137+ using __value_types _CCCL_NODEBUG =
138138 typename __partitioned_completions_of_t <_Sigs>::template __value_types<_Tuple, _Variant>;
139139
140140template <class _Sndr , class _Env , template <class ...> class _Tuple , template <class ...> class _Variant >
141- using value_types_of_t _CCCL_NODEBUG_ALIAS =
141+ using value_types_of_t _CCCL_NODEBUG =
142142 __value_types<completion_signatures_of_t <_Sndr, _Env>,
143143 ::cuda::std::__type_indirect_quote<_Tuple>::template __call,
144144 ::cuda::std::__type_indirect_quote<_Variant>::template __call>;
145145
146146template <class _Sigs ,
147147 template <class ...> class _Variant ,
148148 template <class ...> class _Transform = ::cuda::std::__type_self_t >
149- using __error_types _CCCL_NODEBUG_ALIAS =
149+ using __error_types _CCCL_NODEBUG =
150150 typename __partitioned_completions_of_t <_Sigs>::template __error_types<_Variant, _Transform>;
151151
152152template <class _Sndr , class _Env , template <class ...> class _Variant >
153- using error_types_of_t _CCCL_NODEBUG_ALIAS =
153+ using error_types_of_t _CCCL_NODEBUG =
154154 __error_types<completion_signatures_of_t <_Sndr, _Env>, ::cuda::std::__type_indirect_quote<_Variant>::template __call>;
155155
156156template <class _Sigs , template <class ...> class _Variant , class _Type = set_stopped_t ()>
157- using __stopped_types _CCCL_NODEBUG_ALIAS =
157+ using __stopped_types _CCCL_NODEBUG =
158158 typename __partitioned_completions_of_t <_Sigs>::template __stopped_types<_Variant, _Type>;
159159
160160template <class _Sigs >
@@ -187,7 +187,7 @@ _CCCL_HOST_DEVICE_API auto __make_unique(_Sigs*...)
187187 -> ::cuda::std::__type_apply<::cuda::std::__type_quote<completion_signatures>, ::cuda::std::__make_type_set<_Sigs...>>;
188188
189189template <class ... _Sigs>
190- using __make_completion_signatures_t _CCCL_NODEBUG_ALIAS =
190+ using __make_completion_signatures_t _CCCL_NODEBUG =
191191 decltype (execution::__make_unique (execution::__normalize (static_cast <_Sigs*>(nullptr ))...));
192192
193193template <class ... _ExplicitSigs, class ... _DeducedSigs>
@@ -202,7 +202,7 @@ template <class... _ExplicitSigs, class... _DeducedSigs>
202202struct __concat_completion_signatures_impl ;
203203
204204template <class ... _Sigs>
205- using __concat_completion_signatures_t _CCCL_NODEBUG_ALIAS =
205+ using __concat_completion_signatures_t _CCCL_NODEBUG =
206206 __call_result_t <__call_result_t <__concat_completion_signatures_impl, const _Sigs&...>>;
207207
208208struct __concat_completion_signatures_fn
@@ -244,8 +244,8 @@ struct __concat_completion_signatures_impl
244244 const completion_signatures<_Ds...>& = __empty_completion_signatures,
245245 const _Rest&...) const noexcept
246246 {
247- using _Tmp = completion_signatures<_As..., _Bs..., _Cs..., _Ds...>;
248- using _SigsFnPtr _CCCL_NODEBUG_ALIAS = __call_result_t <_Self, const _Tmp&, const _Rest&...>;
247+ using _Tmp = completion_signatures<_As..., _Bs..., _Cs..., _Ds...>;
248+ using _SigsFnPtr _CCCL_NODEBUG = __call_result_t <_Self, const _Tmp&, const _Rest&...>;
249249 return static_cast <_SigsFnPtr>(nullptr );
250250 }
251251
@@ -337,35 +337,34 @@ struct _CCCL_TYPE_VISIBILITY_DEFAULT completion_signatures
337337 {
338338 // This is defined in a nested struct to avoid computing these types if they are not
339339 // needed.
340- using type _CCCL_NODEBUG_ALIAS = __partition_completion_signatures_t <_Sigs...>;
340+ using type _CCCL_NODEBUG = __partition_completion_signatures_t <_Sigs...>;
341341 };
342342
343343 // ! @brief Type set view of the completion signatures for set operations.
344344 struct __type_set
345345 {
346346 // This is defined in a nested struct to avoid computing this type if it is not
347347 // needed.
348- using type _CCCL_NODEBUG_ALIAS = ::cuda::std::__make_type_set<_Sigs...>;
348+ using type _CCCL_NODEBUG = ::cuda::std::__make_type_set<_Sigs...>;
349349 };
350350
351351 // ! @brief Applies a metafunction to each signature and collects the results.
352352 // ! @tparam _Fn The metafunction to apply.
353353 // ! @tparam _Continuation The template to collect results into.
354354 template <template <class ...> class _Fn , template <class ...> class _Continuation = __completion_signatures>
355- using __transform_q _CCCL_NODEBUG_ALIAS = _Continuation<::cuda::std::__type_apply_q<_Fn, _Sigs>...>;
355+ using __transform_q _CCCL_NODEBUG = _Continuation<::cuda::std::__type_apply_q<_Fn, _Sigs>...>;
356356
357357 // ! @brief Applies a callable metafunction to each signature and collects the results.
358358 // ! @tparam _Fn The callable metafunction to apply.
359359 // ! @tparam _Continuation The template to collect results into.
360360 template <class _Fn , class _Continuation = ::cuda::std::__type_quote<__completion_signatures>>
361- using __transform _CCCL_NODEBUG_ALIAS =
362- ::cuda::std::__type_call<_Continuation, ::cuda::std::__type_apply<_Fn, _Sigs>...>;
361+ using __transform _CCCL_NODEBUG = ::cuda::std::__type_call<_Continuation, ::cuda::std::__type_apply<_Fn, _Sigs>...>;
363362
364363 // ! @brief Calls a metafunction with the signatures as arguments.
365364 // ! @tparam _Fn The metafunction to call.
366365 // ! @tparam _More Additional arguments to pass.
367366 template <class _Fn , class ... _More>
368- using __call _CCCL_NODEBUG_ALIAS = ::cuda::std::__type_call<_Fn, _More..., _Sigs...>;
367+ using __call _CCCL_NODEBUG = ::cuda::std::__type_call<_Fn, _More..., _Sigs...>;
369368
370369 // ! @brief Default constructor.
371370 _CCCL_HIDE_FROM_ABI constexpr completion_signatures () = default;
@@ -574,25 +573,25 @@ template <>
574573struct __gather_sigs_fn <set_value_t >
575574{
576575 template <class _Sigs , template <class ...> class _Tuple , template <class ...> class _Variant >
577- using __call _CCCL_NODEBUG_ALIAS = __value_types<_Sigs, _Tuple, _Variant>;
576+ using __call _CCCL_NODEBUG = __value_types<_Sigs, _Tuple, _Variant>;
578577};
579578
580579template <>
581580struct __gather_sigs_fn <set_error_t >
582581{
583582 template <class _Sigs , template <class ...> class _Tuple , template <class ...> class _Variant >
584- using __call _CCCL_NODEBUG_ALIAS = __error_types<_Sigs, _Variant, _Tuple>;
583+ using __call _CCCL_NODEBUG = __error_types<_Sigs, _Variant, _Tuple>;
585584};
586585
587586template <>
588587struct __gather_sigs_fn <set_stopped_t >
589588{
590589 template <class _Sigs , template <class ...> class _Tuple , template <class ...> class _Variant >
591- using __call _CCCL_NODEBUG_ALIAS = __stopped_types<_Sigs, _Variant, _Tuple<>>;
590+ using __call _CCCL_NODEBUG = __stopped_types<_Sigs, _Variant, _Tuple<>>;
592591};
593592
594593template <class _Sigs , class _WantedTag , template <class ...> class _Tuple , template <class ...> class _Variant >
595- using __gather_completion_signatures _CCCL_NODEBUG_ALIAS =
594+ using __gather_completion_signatures _CCCL_NODEBUG =
596595 typename __gather_sigs_fn<_WantedTag>::template __call<_Sigs, _Tuple, _Variant>;
597596
598597// //////////////////////////////////////////////////////////////////////////////////////////////////
@@ -622,10 +621,10 @@ template <bool _PotentiallyThrowing>
622621 }
623622}
624623
625- using __eptr_completion_t _CCCL_NODEBUG_ALIAS = decltype (execution::__eptr_completion ());
624+ using __eptr_completion_t _CCCL_NODEBUG = decltype (execution::__eptr_completion ());
626625
627626template <bool _PotentiallyThrowing>
628- using __eptr_completion_if_t _CCCL_NODEBUG_ALIAS = decltype (execution::__eptr_completion_if<_PotentiallyThrowing>());
627+ using __eptr_completion_if_t _CCCL_NODEBUG = decltype (execution::__eptr_completion_if<_PotentiallyThrowing>());
629628
630629// //////////////////////////////////////////////////////////////////////////////////////////////////
631630// invalid_completion_signature
0 commit comments