= private = protected
==(other)
Compare this object and other for equality.
# File lib/ostruct.rb, line 142 def ==(other) return false unless(other.kind_of?(OpenStruct)) return @table == other.table end