# File lib/Borges/Utilities/WeakIdentityKeyHash.rb, line 99
    def eql?(other)
      if other.respond_to? :internal_id then
        return other.internal_id == @internal_id
      else
        return other.object_id == @internal_id
      end

      return false
    end