Skip to content

Queue_InsertValue

Sancky edited this page Sep 26, 2022 · 2 revisions

Description

Insert an value in a queue.

Syntax

Queue_InsertValue(queue, value)

Example

new Queue:queue<10>;

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

Returns

Returns true for success, otherwise false.

Clone this wiki locally