| 1022 | // Thread-safe. |
| 1023 | template<typename It> |
| 1024 | bool try_enqueue_bulk(It itemFirst, size_t count) { |
| 1025 | if (INITIAL_IMPLICIT_PRODUCER_HASH_SIZE == 0) return false; |
| 1026 | return inner_enqueue_bulk<CannotAlloc>(itemFirst, count); |
| 1027 | } |
| 1028 | |
| 1029 | // Enqueues several items using an explicit producer token. |
| 1030 | // Does not allocate memory. Fails if not enough room to enqueue. |
nothing calls this directly
no outgoing calls
no test coverage detected