Modulo of self with i.

Returns the remainder of division of self by i.

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

Property definitions

core $ Int16 :: %
	# Modulo of `self` with `i`.
	#
	# Returns the remainder of division of `self` by `i`.
	#
	#     assert 5i16 % 2i16	== 1i16
	#     assert 10i16 % 2i16	== 0i16
	fun %(i: Int16): Int16 is intern
lib/core/fixed_ints.nit:252,2--258,33