Skip to content

Queue_Clear

Sancky edited this page Oct 2, 2022 · 3 revisions

Description

Clear an queue.

Syntax

Queue_Clear(queue)

Example

new Queue:queue<10>;

Queue_InsertValue(queue, 1);
Queue_InsertValue(queue, 5);
Queue_InsertValue(queue, 10);
Queue_InsertValue(queue, 15);

Queue_Clear(queue);

Returns

Doesn't return anything.

Clone this wiki locally