Skip to content

SortArray_Insert

Sancky edited this page Oct 18, 2022 · 1 revision

Description

Insert an value in a sorted array.

Syntax

SortArray_Insert(array[], value)

Example

new SortedArray:array<10>;

SortArray_Insert(array, 1);
SortArray_Insert(array, 5);

Returns

Returns true for success, otherwise false.

Clone this wiki locally