MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / dequeue_bulk

Method dequeue_bulk

Source/ThirdParty/concurrentqueue.h:1511–1519  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1509
1510 template<typename It>
1511 inline size_t dequeue_bulk(It& itemFirst, size_t max)
1512 {
1513 if (isExplicit) {
1514 return static_cast<ExplicitProducer*>(this)->dequeue_bulk(itemFirst, max);
1515 }
1516 else {
1517 return static_cast<ImplicitProducer*>(this)->dequeue_bulk(itemFirst, max);
1518 }
1519 }
1520
1521 inline ProducerBase* next_prod() const { return static_cast<ProducerBase*>(next); }
1522

Callers 2

try_dequeue_bulkFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected