We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Remove an value from a queue.
Queue_RemoveValue(queue, value)
new Queue:queue<10>; Queue_InsertValue(queue, 1); Queue_InsertValue(queue, 5); Queue_InsertValue(queue, 10); Queue_InsertValue(queue, 15); Queue_RemoveValue(queue, 10);
Returns true for success, otherwise false.