Attention: Here be dragons
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Godot.
Checking the stable version of the documentation...
PoolIntArray¶
A pooled Array of integers (int).
Descripción¶
An Array specifically designed to hold integer values (int). Optimized for memory usage, does not fragment the memory.
Note: This type is passed by value and not by reference.
Note: This type is limited to signed 32-bit integers, which means it can only take values in the interval [-2^31, 2^31 - 1]
, i.e. [-2147483648, 2147483647]
. Exceeding those bounds will wrap around. In comparison, int uses signed 64-bit integers which can hold much larger values.
Métodos¶
PoolIntArray ( Array from ) |
|
void |
|
void |
append_array ( PoolIntArray array ) |
empty ( ) |
|
void |
invert ( ) |
void |
|
void |
|
void |
|
void |
|
size ( ) |
Descripciones de Métodos¶
PoolIntArray PoolIntArray ( Array from )
Constructs a new PoolIntArray
. Optionally, you can pass in a generic Array that will be converted.
void append ( int integer )
Concatena un elemento al final del array (alias de push_back).
void append_array ( PoolIntArray array )
Appends a PoolIntArray
at the end of this array.
bool empty ( )
Devuelve true
si el array es vacio.
Inserts a new int at a given position in the array. The position must be valid, or at the end of the array (idx == size()
).
void invert ( )
Invierte el orden de los elementos en el array.
void push_back ( int integer )
Añade un valor al array.
void remove ( int idx )
Elimina un elemento del array por indice.
void resize ( int idx )
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size.
Note: Added elements are not automatically initialized to 0 and will contain garbage, i.e. indeterminate values.
Changes the int at the given index.
int size ( )
Devuelve el tamaño del array.