instance method
eql?
Ruby on Rails 7.2.3
Since v6.1.7.10Signature
eql?(other)
No documentation comment.
Parameters
-
otherreq
Source
# 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
Defined in actionpack/lib/action_controller/metal/strong_parameters.rb line 310
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::Parameters