nitc :: Instance :: eq_is
self
o
# Return true if `self` IS `o` (using the Nit semantic of is) fun eq_is(o: Instance): Bool do return self.is_same_instance(o)
redef fun eq_is(o) do if not o isa PrimitiveInstance[nullable Object] then return false return self.val.is_same_instance(o.val) end