recoverWith method

Decoder<A> recoverWith(
  1. Decoder<A> other
)

Implementation

Decoder<A> recoverWith(Decoder<A> other) => handleErrorWith((_) => other);