A data structure made to have the features of an Array and a Map using an array of nb.fs.NamedData<T>
.
Warning : It is possible to have values with the same key. When that happens, get and set functions will refer to the value at the lowest position in the array.
Available since
0.1.0
.Static methods
staticinlinegetFromIndex(this:Array<NamedData<T>>, i:Int):Null<NamedData<T>>
Returns the NamedData<T>
in this instance at position i
.
staticinlinekeyValueIterator(this:Array<NamedData<T>>):MapArrayKVIterator<T>
Returns an iterator over the keys of this instance and the data contained within the NamedData<T>
mapped to it.
staticinlinekeys(this:Array<NamedData<T>>):MapArrayKIterator<T>
Returns an iterator over the keys of this instance.