Computes the cosine of self (expressed in radians).

#assert pi.cos == -1.0

Property definitions

core :: math $ Float :: cos
	# Computes the cosine of `self` (expressed in radians).
	#
	#     #assert pi.cos == -1.0
	fun cos: Float `{ return cos(self); `}
lib/core/math.nit:216,2--219,39