handleErrorWith method

Decoder<A> handleErrorWith(
  1. Function1<DecodingFailure, Decoder<A>> f
)

Implementation

Decoder<A> handleErrorWith(Function1<DecodingFailure, Decoder<A>> f) =>
    HandleErrorDecoder(this, f);