method
eql?
rails latest stable - Class:
ActionController::Parameters
eql?(other)public
No documentation available.
# File actionpack/lib/action_controller/metal/strong_parameters.rb, line 304
def eql?(other)
self.class == other.class &&
permitted? == other.permitted? &&
parameters.eql?(other.parameters)
end