Have self and other different values?

!= is equivalent with not ==.

Property definitions

core $ Object :: !=
	# Have `self` and `other` different values?
	#
	# `!=` is equivalent with `not ==`.
	fun !=(other: nullable Object): Bool do return not (self == other)
lib/core/kernel.nit:170,2--173,67

core $ Bool :: !=
	redef fun !=(b) is intern
lib/core/kernel.nit:502,2--26

core $ UInt32 :: !=
	redef fun !=(i) is intern
lib/core/fixed_ints.nit:599,2--26

core $ Int8 :: !=
	redef fun !=(i) is intern
lib/core/fixed_ints.nit:115,2--26

core $ Int16 :: !=
	redef fun !=(i) is intern
lib/core/fixed_ints.nit:236,2--26

core $ UInt16 :: !=
	redef fun !=(i) is intern
lib/core/fixed_ints.nit:357,2--26

core $ Int32 :: !=
	redef fun !=(i) is intern
lib/core/fixed_ints.nit:478,2--26

core $ CString :: !=
	redef fun !=(o) is intern do return not is_same_instance(o)
lib/core/text/native.nit:117,2--60

core $ Char :: !=
	redef fun !=(o) is intern
lib/core/kernel.nit:912,2--26

core $ Byte :: !=
	redef fun !=(i) is intern
lib/core/kernel.nit:615,2--26

core $ Float :: !=
	redef fun !=(i) is intern
lib/core/kernel.nit:526,2--26

core $ Int :: !=
	redef fun !=(i) is intern
lib/core/kernel.nit:716,2--26