fun <reified T : Number> randint(low: Int, high: Int? = null): T
Return random integers from low (inclusive) to high (exclusive).
fun <reified T : Number> randint(low: Int, high: Int? = null, vararg size: Int): KtNDArray<T>