A pooled [Array] of integers ([int]). An [Array] specifically designed to hold integer values ([int]). Optimized for memory usage, does not fragment the memory. [b]Note:[/b] This type is passed by value and not by reference. [b]Note:[/b] This type is limited to signed 32-bit integers, which means it can only take values in the interval [code][-2^31, 2^31 - 1][/code], i.e. [code][-2147483648, 2147483647][/code]. Exceeding those bounds will wrap around. In comparison, [int] uses signed 64-bit integers which can hold much larger values. Constructs a new [PoolIntArray]. Optionally, you can pass in a generic [Array] that will be converted. Appends an element at the end of the array (alias of [method push_back]). Appends a [PoolIntArray] at the end of this array. Returns [code]true[/code] if the array is empty. Inserts a new int at a given position in the array. The position must be valid, or at the end of the array ([code]idx == size()[/code]). Reverses the order of the elements in the array. Appends a value to the array. Removes an element from the array by index. 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. Changes the int at the given index. Returns the array size.