The value of the least-significant 30 bits of self

This mask is used as compatibility with 32 bits architecture. The missing 2 bits are used to tag integers by the Nit system.

Property definitions

noise :: noise $ Int :: mask
	# The value of the least-significant 30 bits of `self`
	#
	# This mask is used as compatibility with 32 bits architecture.
	# The missing 2 bits are used to tag integers by the Nit system.
	private fun mask: Int
	do
		return self & 0x3FFF_FFFF
	end
lib/noise/noise.nit:353,2--360,4