in reply to Re^2: Let's unite sets
in thread Let's unite sets

Certainly. Notice that the hash keys are "stringified objects", which include a memory locations, like this:

% perl -le 'print bless +{}, "Foo"' Foo=HASH(0x814cbb8)
So objects are considered equal only if their "stringifications" match. You still recover the original object from the corresponding hash value.

the lowliest monk