Class: Dry::Types::Constructor::Function::Safe Private
- Inherits:
-
Dry::Types::Constructor::Function
- Object
- Dry::Types::Constructor::Function
- Dry::Types::Constructor::Function::Safe
- Defined in:
- lib/dry/types/constructor/function.rb
Overview
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.
Wrapper for unsafe coercion functions
Instance Attribute Summary
Attributes inherited from Dry::Types::Constructor::Function
Instance Method Summary collapse
- #call(input, &block) ⇒ Object private
Methods inherited from Dry::Types::Constructor::Function
#<<, #>>, [], #arity, #initialize, #to_ast, #wrapper?, yields_block?
Constructor Details
This class inherits a constructor from Dry::Types::Constructor::Function
Instance Method Details
#call(input, &block) ⇒ 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.
16 17 18 19 20 |
# File 'lib/dry/types/constructor/function.rb', line 16 def call(input, &block) @fn.(input, &block) rescue ::NoMethodError, ::TypeError, ::ArgumentError => e CoercionError.handle(e, &block) end |