class PDF::Reader::Reference
def ==(obj)
returns true if the provided object points to the same PDF Object as the
###############################################################################
def ==(obj) return false unless obj.kind_of?(PDF::Reader::Reference) self.hash == obj.hash end