| 1726 | |
| 1727 | public: |
| 1728 | operation(Range range, _static_thread_pool& pool, Receiver rcvr) |
| 1729 | : operation_base_with_receiver<Range, Receiver>{std::move(range), |
| 1730 | pool, |
| 1731 | static_cast<Receiver&&>(rcvr)} |
| 1732 | , items_(std::ranges::size(this->range_), item_allocator_t(get_allocator(this->rcvr_))) |
| 1733 | {} |
| 1734 | |
| 1735 | ~operation() |
| 1736 | { |
nothing calls this directly
no test coverage detected