EnglishРусский  
 Share/Save/Bookmark
 

Array

Array. You can use variables of the arr type for working with arrays. The arr type is inherited from the buf type.

 

Operators

* arr Get the count of items.
foreach var,arr Foreach operator.
arr of type Specifying the type of items.
arr[i] Getting [i] item of the array.

Methods

arr.clear Clear an array.
arr.cut Reducing an array.
arr.del Deleting item(s).
arr.expand Add items to an array.
arr.insert Insert elements.
arr.move Move an item.
arr.sort Sorting an array.
Edit