Module: IzzyArray
- Defined in:
- lib/izzy.rb
Instance Method Summary collapse
Instance Method Details
#all_are(m) ⇒ Object
44 45 46 |
# File 'lib/izzy.rb', line 44 def all_are(m) self.all?(&object_block(m)) end |
#any_are(m) ⇒ Object
48 49 50 |
# File 'lib/izzy.rb', line 48 def any_are(m) self.any?(&object_block(m)) end |
#none_are(m) ⇒ Object
52 53 54 |
# File 'lib/izzy.rb', line 52 def none_are(m) self.none?(&object_block(m)) end |