Class: Mutant::Mutator::Util
- Inherits:
-
Mutant::Mutator
- Object
- Mutant::Mutator
- Mutant::Mutator::Util
- Defined in:
- lib/mutant/mutator/util.rb,
lib/mutant/mutator/util/array.rb,
lib/mutant/mutator/util/symbol.rb
Overview
Namespace for utility mutators
Direct Known Subclasses
Defined Under Namespace
Instance Attribute Summary
Attributes inherited from Mutant::Mutator
Class Method Summary collapse
-
.each(object, parent, &block) ⇒ Enumerator<Object>, self
private
Run utility mutator.
Class Method Details
.each(object, parent, &block) ⇒ Enumerator<Object>, self
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Run utility mutator
19 20 21 22 23 24 25 |
# File 'lib/mutant/mutator/util.rb', line 19 def self.each(object, parent, &block) return to_enum(__method__, object, parent) unless block_given? new(object, parent, block) self end |