Modulo of self with i.

Returns the remainder of division of self by i.

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

Property definitions

core $ Int8 :: %
	# Modulo of `self` with `i`.
	#
	# Returns the remainder of division of `self` by `i`.
	#
	#     assert 5i8 % 2i8		== 1i8
	#     assert 10i8 % 2i8		== 0i8
	fun %(i: Int8): Int8 is intern
lib/core/fixed_ints.nit:131,2--137,31