Computes the arc tangent of self.

#assert 0.0.tan == 0.0

Property definitions

core :: math $ Float :: atan
	# Computes the arc tangent of `self`.
	#
	#     #assert 0.0.tan == 0.0
	fun atan: Float `{ return atan(self); `}
lib/core/math.nit:241,2--244,41