Inserts a new element at the end of the queue (a synonym for \ref enqueue)
| 177 | |
| 178 | /// Inserts a new element at the end of the queue (a synonym for \ref enqueue) |
| 179 | bool push( value_type const& val ) |
| 180 | { |
| 181 | return enqueue( val ); |
| 182 | } |
| 183 | |
| 184 | /// Inserts a new element at the end of the queue (move semantics) |
| 185 | /** |