Class: Dry::Types::Constructor::Function::MethodCall::PrivateSafeCall Private

Inherits:
PrivateCall show all
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.

Coercion via an unsafe private method call

Instance Attribute Summary

Attributes inherited from Dry::Types::Constructor::Function::MethodCall

#name, #target

Attributes inherited from Dry::Types::Constructor::Function

#fn

Instance Method Summary collapse

Methods inherited from Dry::Types::Constructor::Function::MethodCall

[], call_class, #initialize, #to_ast

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::MethodCall

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.



95
96
97
98
99
# File 'lib/dry/types/constructor/function.rb', line 95

def call(input, &block)
  @target.send(@name, input)
rescue ::NoMethodError, ::TypeError, ::ArgumentError => e
  CoercionError.handle(e, &block)
end