Enqueue an item at tail of queue.
| 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 ) { |
no test coverage detected