Skip to content

Commit b8b7658

Browse files
authored
Merge pull request #7 from beman-project/rename
rename Beman/Execution26 -> beman/execution26
2 parents b6f6eda + 6292cbd commit b8b7658

File tree

144 files changed

+1057
-1057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+1057
-1057
lines changed

examples/stop_token.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// examples/stop_token.cpp
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
#include <Beman/Execution26/stop_token.hpp>
4+
#include <beman/execution26/stop_token.hpp>
55
#include <condition_variable>
66
#include <iostream>
77
#include <latch>
88
#include <mutex>
99
#include <thread>
1010

11-
namespace exec = Beman::Execution26;
11+
namespace exec = beman::execution26;
1212

1313
// The stop token classes are used to cancel work. Each
1414
// stop token may be connected to a stop source on which

include/Beman/Execution26/detail/basic_receiver.hpp

-78
This file was deleted.

include/Beman/Execution26/detail/env_type.hpp

-29
This file was deleted.

include/Beman/Execution26/detail/get_domain_late.hpp

-50
This file was deleted.

include/Beman/Execution26/detail/scheduler.hpp

-39
This file was deleted.

include/Beman/Execution26/detail/sender_in.hpp

-34
This file was deleted.

include/Beman/Execution26/execution.hpp

-35
This file was deleted.

include/Beman/Execution26/stop_token.hpp

-19
This file was deleted.

include/Beman/Execution26/detail/almost_scheduler.hpp include/beman/execution26/detail/almost_scheduler.hpp

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
// include/Beman/Execution26/detail/almost_scheduler.hpp -*-C++-*-
1+
// include/beman/execution26/detail/almost_scheduler.hpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#ifndef INCLUDED_BEMAN_EXECUTION26_DETAIL_ALMOST_SCHEDULER
55
#define INCLUDED_BEMAN_EXECUTION26_DETAIL_ALMOST_SCHEDULER
66

7-
#include <Beman/Execution26/detail/queryable.hpp>
8-
#include <Beman/Execution26/detail/schedule.hpp>
9-
#include <Beman/Execution26/detail/sender.hpp>
7+
#include <beman/execution26/detail/queryable.hpp>
8+
#include <beman/execution26/detail/schedule.hpp>
9+
#include <beman/execution26/detail/sender.hpp>
1010
#include <concepts>
1111
#include <utility>
1212

1313
// ----------------------------------------------------------------------------
1414

15-
namespace Beman::Execution26
15+
namespace beman::execution26
1616
{
1717
struct scheduler_t {};
1818
}
1919

20-
namespace Beman::Execution26::Detail
20+
namespace beman::execution26::detail
2121
{
2222
template <typename Scheduler>
2323
concept almost_scheduler
2424
= ::std::derived_from<typename ::std::remove_cvref_t<Scheduler>::scheduler_concept,
25-
::Beman::Execution26::scheduler_t>
26-
&& ::Beman::Execution26::Detail::queryable<Scheduler>
25+
::beman::execution26::scheduler_t>
26+
&& ::beman::execution26::detail::queryable<Scheduler>
2727
&& requires(Scheduler&& sched) {
28-
{ ::Beman::Execution26::schedule(::std::forward<Scheduler>(sched)) }
29-
-> ::Beman::Execution26::sender;
28+
{ ::beman::execution26::schedule(::std::forward<Scheduler>(sched)) }
29+
-> ::beman::execution26::sender;
3030
}
3131
&& ::std::equality_comparable<::std::remove_cvref_t<Scheduler>>
3232
&& ::std::copy_constructible<::std::remove_cvref_t<Scheduler>>

include/Beman/Execution26/detail/as_except_ptr.hpp include/beman/execution26/detail/as_except_ptr.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// include/Beman/Execution26/detail/as_except_ptr.hpp -*-C++-*-
1+
// include/beman/execution26/detail/as_except_ptr.hpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#ifndef INCLUDED_BEMAN_EXECUTION26_DETAIL_AS_EXCEPT_PTR
@@ -13,7 +13,7 @@
1313

1414
// ----------------------------------------------------------------------------
1515

16-
namespace Beman::Execution26::Detail
16+
namespace beman::execution26::detail
1717
{
1818
template <typename Error>
1919
decltype(auto) as_except_ptr(Error&& error)

0 commit comments

Comments
 (0)