PackedInt64Array
Un array empaquetado de enteros de 64 bits.
Descripción
An array specifically designed to hold 64-bit integer values. Packs data tightly, so it saves memory for large array sizes.
Note: This type stores signed 64-bit integers, which means it can take values in the interval [-2^63, 2^63 - 1], i.e. [-9223372036854775808, 9223372036854775807]. Exceeding those bounds will wrap around. If you only need to pack 32-bit integers tightly, see PackedInt32Array for a more memory-friendly alternative.
Differences between packed arrays, typed arrays, and untyped arrays: Packed arrays are generally faster to iterate on and modify compared to a typed array of the same type (e.g. PackedInt64Array versus Array[int]). Also, packed arrays consume less memory. As a downside, packed arrays are less flexible as they don't offer as many convenience methods such as Array.map(). Typed arrays are in turn faster to iterate on and modify than untyped arrays.
Note: Packed arrays are always passed by reference. To get a copy of an array that can be modified independently of the original array, use duplicate(). This is not the case for built-in properties and methods. In these cases the returned packed array is a copy, and changing it will not affect the original value. To update a built-in property of this type, modify the returned array and then assign it to the property again.
Nota
Hay diferencias notables cuando usa esta API con C#. Véase Diferencias de la API de C# con GDScript para más información.
Constructores
PackedInt64Array(from: PackedInt64Array) |
|
PackedInt64Array(from: Array) |
Métodos
void |
append_array(array: PackedInt64Array) |
void |
clear() |
duplicate() const |
|
void |
|
is_empty() const |
|
void |
|
void |
reverse() |
void |
|
size() const |
|
void |
sort() |
to_byte_array() const |
Operadores
operator !=(right: PackedInt64Array) |
|
operator +(right: PackedInt64Array) |
|
operator ==(right: PackedInt64Array) |
|
operator [](index: int) |
Descripciones de Constructores
PackedInt64Array PackedInt64Array() 🔗
Construye un PackedInt64Array vacío.
PackedInt64Array PackedInt64Array(from: PackedInt64Array)
Construye un PackedInt64Array como una copia del PackedInt64Array dado.
PackedInt64Array PackedInt64Array(from: Array)
Construye un nuevo PackedInt64Array. Opcionalmente, puedes pasar un Array genérico que será convertido.
Descripciones de Métodos
Concatena un elemento al final del array (alias de push_back()).
void append_array(array: PackedInt64Array) 🔗
Añade un PackedInt64Array al final de este array.
int bsearch(value: int, before: bool = true) const 🔗
Encuentra el índice de un valor existente (o el índice de inserción que mantiene el orden de clasificación, si el valor aún no está presente en el array) utilizando la búsqueda binaria. Opcionalmente, se puede pasar un especificador before. Si es false, el índice devuelto viene después de todas las entradas existentes del valor en el array.
Nota: Llamar a bsearch() en un array sin ordenar da como resultado un comportamiento inesperado.
void clear() 🔗
Limpia el array. Esto es equivalente a usar resize() con un tamaño de 0.
Devuelve el numer de veces que un elemento es encuentra en el array.
PackedInt64Array duplicate() const 🔗
Creates a copy of the array, and returns it.
Elimina la primera aparición de un valor del array y devuelve true. Si el valor no existe en el array, no sucede nada y se devuelve false. Para eliminar un elemento por índice, usa remove_at() en su lugar.
Asigna el valor dado a todos los elementos del array. Esto normalmente se puede usar junto con resize() para crear un array con un tamaño dado y elementos inicializados.
int find(value: int, from: int = 0) const 🔗
Busca un valor en el array y devuelve su índice o -1 si no lo encuentra. Opcionalmente, se puede pasar el índice de búsqueda inicial.
Devuelve el entero de 64 bits en el index dado en el array. Si index está fuera de los límites o es negativo, este método falla y devuelve 0.
Este método es similar (pero no idéntico) al operador []. Lo más notable es que, cuando este método falla, no pausa la ejecución del proyecto si se ejecuta desde el editor.
Returns true if the array contains value.
int insert(at_index: int, value: int) 🔗
Inserta un nuevo entero en una posición dada del array. La posición debe ser válida, o al final del array (idx == size()).
Devuelve true si el array es vacio.
Añade un valor al array.
Elimina un elemento del array por indice.
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. Calling resize() once and assigning the new values is faster than adding new elements one by one.
Returns @GlobalScope.OK on success, or one of the following Error constants if this method fails: @GlobalScope.ERR_INVALID_PARAMETER if the size is negative, or @GlobalScope.ERR_OUT_OF_MEMORY if allocations fail. Use size() to find the actual size of the array after resize.
void reverse() 🔗
Invierte el orden de los elementos en el array.
int rfind(value: int, from: int = -1) const 🔗
Searches the array in reverse order. Optionally, a start search index can be passed. If negative, the start index is considered relative to the end of the array.
void set(index: int, value: int) 🔗
Cambia el entero en el índice dado.
Devuelve el numer de elementos en el array.
PackedInt64Array slice(begin: int, end: int = 2147483647) const 🔗
Devuelve una porción del PackedInt64Array, desde begin (inclusive) hasta end (exclusivo), como un nuevo PackedInt64Array.
El valor absoluto de begin y end se ajustará al tamaño del array, por lo que el valor predeterminado para end hace que se corte al tamaño del array por defecto (es decir, arr.slice(1) es una abreviatura de arr.slice(1, arr.size())).
Si begin o end son negativos, serán relativos al final del array (es decir, arr.slice(0, -2) es una abreviatura de arr.slice(0, arr.size() - 2)).
void sort() 🔗
Sorts the elements of the array in ascending order.
PackedByteArray to_byte_array() const 🔗
Devuelve una copia de los datos convertidos a un PackedByteArray, donde cada elemento ha sido codificado como 8 bytes.
El tamaño del nuevo array será int64_array.size() * 8.
Descripciones de Operadores
bool operator !=(right: PackedInt64Array) 🔗
Returns true if contents of the arrays differ.
PackedInt64Array operator +(right: PackedInt64Array) 🔗
Devuelve un nuevo PackedInt64Array con el contenido de right añadido al final de este array. Para un mejor rendimiento, considera usar append_array() en su lugar.
bool operator ==(right: PackedInt64Array) 🔗
Returns true if contents of both arrays are the same, i.e. they have all equal ints at the corresponding indices.
Devuelve el int en el índice index. Se pueden usar índices negativos para acceder a los elementos desde el final. Usar un índice fuera de los límites del array resultará en un error.