sqrt
Computes the positive square root of the value Array.
Example:
arrayOf(1.0, 4.0, 9.0).sqrt() // [1.0, 2.0, 3.0]
Content copied to clipboard
Since
1.1.0
See also
sqrt
Computes the positive square root of the value Iterable.
Example:
listOf(1.0, 4.0, 9.0).sqrt() // [1.0, 2.0, 3.0]
Content copied to clipboard
Since
1.1.0
See also
sqrt