We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Remove the front (first) value from a queue.
Queue_RemoveFrontValue(queue)
new Queue:queue<10>; Queue_InsertValue(queue, 1); Queue_InsertValue(queue, 5); Queue_InsertValue(queue, 10); Queue_InsertValue(queue, 15); Queue_RemoveFrontValue(queue);
Returns the removed value, otherwise INVALID_QUEUE_VALUE.