ReadOnlyArray<T>(Array<T>)

package haxe.ds

from Array<T> to Iterable<T>

Available on all platforms

ReadOnlyArray is an abstract over an ordinary Array which only exposes APIs that don't modify the instance, hence "read-only".

Note that this doesn't necessarily mean that the instance is immutable. Other code holding a reference to the underlying Array can still modify it, and the reference can be obtained with a cast.

Variables

read onlylength:Int

The length of this Array.

© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/haxe/ds/ReadOnlyArray.html