RefMapArrayGetNext

Revision as of 17:58, 28 January 2017 by imported>Jazzisparis
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
< [[::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"

See Also