method
any?
any?()
public
Hide source
# File activerecord/lib/active_record/associations/association_collection.rb, line 322 def any? if block_given? method_missing(:any?) { |*block_args| yield(*block_args) } else !empty? end end