method
method_missing
v8.1.1 -
Show latest stable
- Class:
ActiveSupport::ArrayInquirer
method_missing(name, ...)private
No documentation available.
# File activesupport/lib/active_support/array_inquirer.rb, line 42
def method_missing(name, ...)
if name.end_with?("?")
any?(name[0..-2])
else
super
end
end