Returns the non-negative square root of self.

assert 9.0.sqrt == 3.0
#assert 3.0.sqrt == 1.732
assert 1.0.sqrt == 1.0
assert 0.0.sqrt == 0.0

Property definitions

core :: math $ Float :: sqrt
	# Returns the non-negative square root of `self`.
	#
	#     assert 9.0.sqrt == 3.0
	#     #assert 3.0.sqrt == 1.732
	#     assert 1.0.sqrt == 1.0
	#     assert 0.0.sqrt == 0.0
	fun sqrt: Float `{ return sqrt(self); `}
lib/core/math.nit:208,2--214,41