-
Notifications
You must be signed in to change notification settings - Fork 0
class_intarray
reduz edited this page Feb 23, 2014
·
9 revisions
####Category: Built-In Types
Integer Array .
-
int
get( int idx ) - void
push_back( int integer ) - void
resize( int idx ) - void
set( int idx, int integer ) -
int
size( ) - void
IntArray( Array from )
Integer Array. Array of integers. Can only contain integers. Optimized for memory usage, cant fragment the memory.
Get an index in the array.
- void
push_back( int integer )
Append a value to the array.
- void
resize( int idx )
Resize the array.
Set an index in the array.
-
int
size( )
Return the array size.
- void
IntArray( Array from )
Create from a generic array.