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

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