Skip to content
reduz edited this page Feb 23, 2014 · 9 revisions

IntArray

####Category: Built-In Types

Brief Description

Integer Array .

Member Functions

Description

Integer Array. Array of integers. Can only contain integers. Optimized for memory usage, cant fragment the memory.

Member Function Description

Get an index in the array.

  • void push_back ( int integer )

Append a value to the array.

  • void resize ( int idx )

Resize the array.

  • void set ( int idx, int integer )

Set an index in the array.

Return the array size.

  • void IntArray ( Array from )

Create from a generic array.

Clone this wiki locally