klyn.math.Math.asin
method
public static asin(value as Double) as Double:
Description
Returns the arcsine of a value.
import klyn.math

print(Math.asin(1.0))
Throws
  • ValueError if `value` is outside `[-1, 1]`. ```klyn import klyn.math print(Math.asin(1.0)) ```