Ar Append

Revision as of 16:21, 25 May 2014 by imported>Odessa (Created)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Added by NVSE V4. Appends to the end of an existing list array a new element.

The list array must have been initialized prior, for example by using Ar_Construct or Ar_List. This function can not be used to add elements to map or stringmap arrays.

Syntax

(None) Ar_Append list:array element:multi

Example

array_var MyList

let MyList := Ar_Construct "array"

Ar_Append MyList, SunnySmilesREF

See Also