Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/funcml-core/patch/array.rb

Instance Method Summary collapse

Instance Method Details

#mutate(mutations) ⇒ Object



4
5
6
7
8
# File 'lib/funcml-core/patch/array.rb', line 4

def mutate(mutations)
  self.map do |el|
    el.mutate(mutations)
  end
end