Modulo of self with i.

Finds the remainder of division of self by i.

assert 5 % 2            == 1
assert 10 % 2           == 0

Property definitions

core $ Int :: %
	# Modulo of `self` with `i`.
	#
	# Finds the remainder of division of `self` by `i`.
	#
	#     assert 5 % 2			== 1
	#     assert 10 % 2			== 0
	fun %(i: Int): Int is intern
lib/core/kernel.nit:730,2--736,29