IntBuffer

inline fun IntBuffer(size: Int, init: (Int) -> Int): IntBuffer

Creates a new IntBuffer with the specified size, where each element is calculated by calling the specified init function.

The function init is called for each array element sequentially starting from the first one. It should return the value for a buffer element given its index.

fun IntBuffer(vararg ints: Int): IntBuffer

Returns a new IntBuffer of given elements.