| 56 | |
| 57 | template <class Func> |
| 58 | void execute(Func f) const |
| 59 | { |
| 60 | thread_bag& bag = query(execution::context); |
| 61 | bag.add_thread(std::thread(std::move(f))); |
| 62 | } |
| 63 | |
| 64 | friend bool operator==(const thread_executor&, |
| 65 | const thread_executor&) noexcept |
no test coverage detected