Method: RTKIT::StructureSet#==
- Defined in:
- lib/rtkit/structure_set.rb
#==(other) ⇒ Object Also known as: eql?
Returns true if the argument is an instance with attributes equal to self.
115 116 117 118 119 |
# File 'lib/rtkit/structure_set.rb', line 115 def ==(other) if other.respond_to?(:to_structure_set) other.send(:state) == state end end |