RefMapArrayGetNext
Jump to navigation
Jump to search
< [[::Category:Functions|Category:Functions]]
A function added by the JIP NVSE Plugin.
Description
Returns an array_var with the next Key::Value pair in the specified RefMap Array. This is the pair immediately following the one that was returned by the last call to this function, or to RefMapArrayGetFirst. If no pair follows, the function returns ar_Null.
The first element in the returned array is the Key (reference type), and the second element is the Value (float/reference/string type).
Syntax
(array_var) RefMapArrayGetNext arrName:string
Or:
(array_var) RefMapNext arrName:string
Example
let aKeyValue := RefMapArrayGetNext "someRefMap"
let aKeyValue := RefMapNext "someRefMap"