Method: NestedRecord::Collection#select!

Defined in:
lib/nested_record/collection.rb

#select!Object



66
67
68
69
70
# File 'lib/nested_record/collection.rb', line 66

def select!
  return to_enum(:select!) unless block_given?
  @ary.select!(&proc)
  self
end