We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Clear an queue.
Queue_Clear(queue)
new Queue:queue<10>; Queue_InsertValue(queue, 1); Queue_InsertValue(queue, 5); Queue_InsertValue(queue, 10); Queue_InsertValue(queue, 15); Queue_Clear(queue);
Doesn't return anything.