method

eql?

eql?(other)
public

No documentation available.

# File actionpack/lib/action_controller/metal/strong_parameters.rb, line 310
    def eql?(other)
      self.class == other.class &&
        permitted? == other.permitted? &&
        parameters.eql?(other.parameters)
    end