method
method_missing
v5.2.3 -
Show latest stable
- Class:
ActiveSupport::ArrayInquirer
method_missing(name, *args)private
No documentation available.
# File activesupport/lib/active_support/array_inquirer.rb, line 40
def method_missing(name, *args)
if name[-1] == "?"
any?(name[0..-2])
else
super
end
end