many?

many?(&block)
Instance Public methods

Returns true if the collection has more than one record. Equivalent to collection.size > 1.

1
2
3
4
5
6
7
8
9
10
class Person < ActiveRecord::Base
  has_many :pets
end
 
person.pets.count # => 1
person.pets.many? # => false
 
person.pets << Pet.new(name: 'Snoopy')
person.pets.count # => 2
person.pets.many? # => true

You can also pass a block to define criteria. The behavior is the same, it returns true if the collection based on the criteria has more than one record.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
person.pets
# => [
#      #<Pet name: "Gorby", group: "cats">,
#      #<Pet name: "Puff", group: "cats">,
#      #<Pet name: "Snoop", group: "dogs">
#    ]
 
person.pets.many? do |pet|
  pet.group == 'dogs'
end
# => false
 
person.pets.many? do |pet|
  pet.group == 'cats'
end
# => true
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.