モデルのコレクションが空か
適応バージョン
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
空か
使い方
モデルのコレクション.empty?()
例
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