Returns the self raised to the power of e.

assert 2 ** 3 == 8

Property definitions

core :: math $ Int :: **
	# Returns the `self` raised to the power of `e`.
	#
	#     assert 2 ** 3 == 8
	fun **(e: Int): Int
	do
		return self.to_f.pow(e.to_f).to_i
	end
lib/core/math.nit:145,2--151,4