| 1035 | // Thread-safe. |
| 1036 | template<typename It> |
| 1037 | bool enqueue_bulk(It itemFirst, size_t count) |
| 1038 | { |
| 1039 | MOODYCAMEL_CONSTEXPR_IF (INITIAL_IMPLICIT_PRODUCER_HASH_SIZE == 0) return false; |
| 1040 | else return inner_enqueue_bulk<CanAlloc>(itemFirst, count); |
| 1041 | } |
| 1042 | |
| 1043 | // Enqueues several items using an explicit producer token. |
| 1044 | // Allocates memory if required. Only fails if memory allocation fails |
nothing calls this directly
no test coverage detected