| 73 | |
| 74 | template <class Func> |
| 75 | void execute(Func f) const |
| 76 | { |
| 77 | thread_bag& bag = use_service<thread_bag>(query(execution::context)); |
| 78 | bag.add_thread(std::thread(std::move(f))); |
| 79 | } |
| 80 | |
| 81 | friend bool operator==(const thread_executor&, |
| 82 | const thread_executor&) noexcept |
nothing calls this directly
no test coverage detected