Class: Mutant::Transform Private
- Inherits:
-
Object
- Object
- Mutant::Transform
- Includes:
- Unparser::AbstractType, Unparser::Adamantium
- Defined in:
- lib/mutant/transform.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Direct Known Subclasses
Array, Block, Boolean, Exception, Hash, Hash::Key, Hash::Symbolize, Index, Named, Primitive, Sequence, Success
Defined Under Namespace
Classes: Array, Block, Boolean, Error, Exception, Hash, Index, Named, Primitive, Sequence, Success
Instance Method Summary collapse
-
#call ⇒ Either<Error, Object>
private
Apply transformation to input.
-
#slug ⇒ String
private
Default slug.
Instance Method Details
#call ⇒ Either<Error, Object>
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.
Apply transformation to input
19 |
# File 'lib/mutant/transform.rb', line 19 abstract_method :call |
#slug ⇒ String
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.
Default slug
10 11 12 |
# File 'lib/mutant/transform.rb', line 10 def slug self.class.to_s end |