CArray:Init


The Init method sets the first nCount CArray members to the same value.

Syntax

CArray:Init( nCount, value )

where

    nCount is the number of members to define.

    value is the target value to assign and may be a number, string, or other value.

Example

The following script initializes the first 1000 members to a value of "name":

A = CArray:new()

-- create a CArray

A:Init( 1000, "name" )

-- set members 1 through 1000

Printf("A[500] = '%s'", A:Get(500) )

-- result: A[500] = 'name'

Related Topics

Set

CArray class