CArray:Init
The Init method sets the first n CArray members to the same value.
CArray:Init( n, value ) |
This method first empties the CArray and then defines n array members at indices 1 ... n. After Init, MaxIndex and Count both return n.
The following script fragment initializes the first 1000 members to a value of "name":
|
-- create a CArray |
|
-- set members 1 through 1000 |
|
-- result: A[500] = 'name' |