| 293 | using shared_state = bulk_shared_state<CvSender, Receiver, Shape, Fun, MayThrow>; |
| 294 | |
| 295 | void enqueue() noexcept |
| 296 | { |
| 297 | shared_state_.pool_.bulk_enqueue(&shared_state_, shared_state_.num_agents_required()); |
| 298 | } |
| 299 | |
| 300 | template <class... As> |
| 301 | void set_value(As&&... as) noexcept |
nothing calls this directly
no test coverage detected