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