Method: RubyPitaya::Parameters#==

Defined in:
lib/rubypitaya/core/parameters.rb

#==(other) ⇒ Object Also known as: eql?



80
81
82
83
84
85
86
# File 'lib/rubypitaya/core/parameters.rb', line 80

def ==(other)
  if other.respond_to?(:permitted?)
    permitted? == other.permitted? && parameters == other.parameters
  else
    @parameters == other
  end
end