PoolIntArray

    A pooled of integers (int).

    An 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 , i.e. . Exceeding those bounds will wrap around. In comparison, uses signed 64-bit integers which can hold much larger values.


    • void append ( int integer )

    Append an element at the end of the array (alias of ).


    Append a at the end of this array.


    • insert ( int idx, integer )

    Insert a new int at a given position in the array. The position must be valid, or at the end of the array ().


    • void invert ( )

    Reverse the order of the elements in the array.



    • void remove ( int idx )

    Remove an element from the array by index.


    • void resize ( idx )

    Set the size of the array. If the array is grown reserve elements at the end of the array. If the array is shrunk truncate the array to the new size.


    • void set ( int idx, integer )

    Change the int at the given index.


    Returns the array size.