Class: Remap::Rule::Set
- Inherits:
-
Remap::Rule
- Object
- Dry::Concrete
- Remap::Rule
- Remap::Rule::Set
- Defined in:
- lib/remap/rule/set.rb
Instance Method Summary collapse
-
#call(state) ⇒ State
Returns value mapped to path regardless of input.
Instance Method Details
#call(state) ⇒ State
Returns value mapped to path regardless of input
36 37 38 39 40 |
# File 'lib/remap/rule/set.rb', line 36 def call(state) path.call(state) do value.call(state) end end |