| 557 | std::declval<Executor const &>().defer(std::declval<F>(), std::declval<A const &>()); |
| 558 | } |
| 559 | constexpr void defer(F&& f, A const & a) const noexcept |
| 560 | { |
| 561 | self_.run_([&]() { ex_.defer(wrap_(static_cast<F&&>(f)), a); }); |
| 562 | } |
| 563 | |
| 564 | constexpr bool operator==(executor const & rhs) const noexcept |
| 565 | { |