PoolIntArray

Array of integers (int).

Description

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.

Methods

Method Descriptions

  • PoolIntArray PoolIntArray ( Array from ) PoolIntArray. Optionally, you can pass in a generic Array that will be converted.

  • append ( int integer ) push_back).

  • append_array ( PoolIntArray array ) PoolIntArray at the end of this array.

  • bool empty ( ) true if the array is empty.

  • int insert ( int idx, int integer ) idx == size()).

  • invert ( ) Reverses the order of the elements in the array.

  • push_back ( int integer ) Appends a value to the array.

  • remove ( int idx ) Removes an element from the array by index.

  • 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.

  • set ( int idx, int integer ) Changes the int at the given index.

  • int size ( ) Returns the array size.