-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a935f81
commit 1501ab6
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// include/beman/execution26/detail/connect_all_result.hpp -*-C++-*- | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#ifndef INCLUDED_INCLUDE_BEMAN_EXECUTION26_DETAIL_CONNECT_ALL_RESULT | ||
#define INCLUDED_INCLUDE_BEMAN_EXECUTION26_DETAIL_CONNECT_ALL_RESULT | ||
|
||
#include <beman/execution26/detail/basic_state.hpp> | ||
#include <beman/execution26/detail/connect_all.hpp> | ||
#include <beman/execution26/detail/call_result_t.hpp> | ||
#include <beman/execution26/detail/indices_for.hpp> | ||
|
||
// ---------------------------------------------------------------------------- | ||
|
||
namespace beman::execution26::detail | ||
{ | ||
template <typename Sender, typename Receiver> | ||
using connect_all_result | ||
= ::beman::execution26::detail::call_result_t< | ||
decltype(::beman::execution26::detail::connect_all), | ||
::beman::execution26::detail::basic_state<Sender, Receiver>*, | ||
Sender, | ||
::beman::execution26::detail::indices_for<Sender> | ||
>; | ||
} | ||
|
||
// ---------------------------------------------------------------------------- | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters