Method: Mustermann::Expander#eql?

Defined in:
lib/mustermann/expander.rb

#eql?(other) ⇒ Boolean

See Also:

  • Object#eql?


164
165
166
167
# File 'lib/mustermann/expander.rb', line 164

def eql?(other)
  return false unless other.class == self.class
  other.patterns.eql? patterns and other.additional_values.eql? additional_values
end