class Dry::Types::Constructor::Function::MethodCall::PrivateSafeCall

@api private
Coercion via an unsafe private method call

def call(input, &)

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