1 map array
int size(Map<K.V>)
Returns the number of elements in the map type.
int size(Array<T>)
Returns the number of elements in the array type.
boolean array_contains(Array<T>, value)
Returns TRUE if the array contains value.
array<V> map_values(Map<K.V>)
Returns an unordered array containing the values of the input map.
array<t> sort_array(Array<T>)
Sorts the input array in ascending order according to the natural ordering of the array elements and returns it (as of version 0.9.0).
array<K> map_keys(Map<K.V>)
Returns an unordered array containing the keys of the input map.