Computes the arc sine of self.

#assert 1.0.asin == pi / 2.0

Property definitions

core :: math $ Float :: asin
	# Computes the arc sine of `self`.
	#
	#     #assert 1.0.asin == pi / 2.0
	fun asin: Float `{ return asin(self); `}
lib/core/math.nit:236,2--239,41