empty?

empty?()
Instance Public methods

Returns true if the collection is empty. If the collection has been loaded it is equivalent to collection.size.zero?. If the collection has not been loaded, it is equivalent to collection.exists?. If the collection has not already been loaded and you are going to fetch the records anyway it is better to check collection.length.zero?.

1
2
3
4
5
6
7
8
9
10
11
class Person < ActiveRecord::Base
  has_many :pets
end
 
person.pets.count  # => 1
person.pets.empty? # => false
 
person.pets.delete_all
 
person.pets.count  # => 0
person.pets.empty? # => true
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.