method
any?
![No documentation Importance_0](https://d2vfyqvduarcvs.cloudfront.net/images/importance_0.png?1349367920)
any?()
public
Hide source
# File activerecord/lib/active_record/associations/association_collection.rb, line 288 def any? if block_given? method_missing(:any?) { |*block_args| yield(*block_args) } else !empty? end end