macro_rules! DEQUEUE {
($queue:expr) => { ... };
}
Expand description
Removes and returns the first element from the queue.
§Parameters
queue
: A mutable reference to the queue from which the first element will be removed.
§Return
- The first element from the queue.