Removes the next element from the queue (a synonym for \ref dequeue)
| 231 | |
| 232 | /// Removes the next element from the queue (a synonym for \ref dequeue) |
| 233 | bool pop( value_type& val ) |
| 234 | { |
| 235 | return dequeue( val ); |
| 236 | } |
| 237 | |
| 238 | /// Clears the queue |
| 239 | void clear() |