Static variables
Static methods
staticinlinepop(this:Array<T>):Tuple<Null<T>, ReadonlyArray<T>>
Removes and returns the value at the end of the array. The original ReadonlyArray is unchanged.
staticreducei<X>(this:Array<T>, f:(X, T, Int) ‑> X, initial:X):X
It is the same as reduce
but with the extra integer index
parameter.
staticshift(this:Array<T>):Tuple<Null<T>, ReadonlyArray<T>>
Removes and returns the value at the beginning of the array. The original ReadonlyArray is unchanged.