kotlin.DoubleArray

DoubleArray

class DoubleArray

An array of doubles. When targeting the JVM, instances of this class are represented as double[].

Constructors

<init>

DoubleArray(size: Int, init: (Int) -> Double)

Creates a new array of the specified size, where each element is calculated by calling the specified init function. The init function returns an array element given its index.

登录查看完整内容