IntegerVector Type

Vector of integer elements.

Constructors

Constructor Description

IntegerVector()

Full Usage: IntegerVector()

Instance members

Instance member Description

this.Clear

Full Usage: this.Clear

Clears all elements and deletes the underlying array.

this.[arg1]

Full Usage: this.[arg1]

Returns: int

Element accessor.

Returns: int

this.Resize

Full Usage: this.Resize

Parameters:
    length : int - New length.

Resizes the vector. Previosly stored data are lost.

length : int

New length.

this.SetAllElementsTo

Full Usage: this.SetAllElementsTo

Parameters:
    val : int - The value all elements are set to.

Sets all elements to the provided value.

val : int

The value all elements are set to.