| 1099 | // Thread-safe. |
| 1100 | template<typename It> |
| 1101 | bool try_enqueue_bulk(It itemFirst, size_t count) |
| 1102 | { |
| 1103 | MOODYCAMEL_CONSTEXPR_IF (INITIAL_IMPLICIT_PRODUCER_HASH_SIZE == 0) return false; |
| 1104 | else return inner_enqueue_bulk<CannotAlloc>(itemFirst, count); |
| 1105 | } |
| 1106 | |
| 1107 | // Enqueues several items using an explicit producer token. |
| 1108 | // Does not allocate memory. Fails if not enough room to enqueue. |
nothing calls this directly
no test coverage detected