| 1121 | // Thread-safe. |
| 1122 | template<typename It> |
| 1123 | bool try_enqueue_bulk(It itemFirst, size_t count) |
| 1124 | { |
| 1125 | MOODYCAMEL_CONSTEXPR_IF (INITIAL_IMPLICIT_PRODUCER_HASH_SIZE == 0) return false; |
| 1126 | else return inner_enqueue_bulk<CannotAlloc>(itemFirst, count); |
| 1127 | } |
| 1128 | |
| 1129 | // Enqueues several items using an explicit producer token. |
| 1130 | // Does not allocate memory. Fails if not enough room to enqueue. |