| 964 | // Thread-safe. |
| 965 | template<typename It> |
| 966 | bool enqueue_bulk(It itemFirst, size_t count) { |
| 967 | if (INITIAL_IMPLICIT_PRODUCER_HASH_SIZE == 0) return false; |
| 968 | return inner_enqueue_bulk<CanAlloc>(itemFirst, count); |
| 969 | } |
| 970 | |
| 971 | // Enqueues several items using an explicit producer token. |
| 972 | // Allocates memory if required. Only fails if memory allocation fails |
nothing calls this directly
no test coverage detected