method
any?
Ruby on Rails latest stable (v7.1.3.2)
-
0 notes -
Class: ActiveRecord::Associations::AssociationCollection
any?()
public
Hide source
# File activerecord/lib/active_record/associations/association_collection.rb, line 324 def any? if block_given? method_missing(:any?) { |*block_args| yield(*block_args) } else !empty? end end