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. Construct a new [code]PoolIntArray[/code]. Optionally, you can pass in a generic [Array] that will be converted. Append an element at the end of the array (alias of [method push_back]). Append a [code]PoolIntArray[/code] at the end of this array. Insert 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]). Reverse the order of the elements in the array. Append a value to the array. Remove an element from the array by index. 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. Change the int at the given index. Returns the array size.