method
eql?
v7.2.3 -
Show latest stable
- Class:
ActionController::Parameters
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