MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / push

Method push

benchmarks/tbb/concurrent_queue.h:132–134  ·  view source on GitHub ↗

Enqueue an item at tail of queue.

Source from the content-addressed store, hash-verified

130
131 //! Enqueue an item at tail of queue.
132 void push( const T& source ) {
133 this->internal_push( &source, copy_construct_item );
134 }
135
136#if __TBB_CPP11_RVALUE_REF_PRESENT
137 void push( T&& source ) {

Callers 1

concurrent_queueMethod · 0.95

Calls 1

internal_pushMethod · 0.45

Tested by

no test coverage detected