public static sqrt<FLOAT_TYPE extends AbstractFloat = Double>(value as FLOAT_TYPE) as FLOAT_TYPE:
Returns the square root of a floating-point value.
value
import klyn.math print(Math.sqrt(9.0)) print(Math.sqrt(2.0f))