We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add CanRecover[F[_]]
CanRecover[F[_]]
Version: 1.2.0
1.2.0
trait CanRecover[F[_]] { type Xor[A, B] type XorT[A, B] def recoverFromNonFatalWith[A, AA >: A](fa: => F[A])(handleError: PartialFunction[Throwable, F[AA]]): F[AA] def recoverEitherTFromNonFatalWith[A, AA >: A, B, BB >: B]( efab: => XorT[A, B] )( handleError: PartialFunction[Throwable, F[Xor[AA, BB]]] ): XorT[AA, BB] def recoverFromNonFatal[A, AA >: A](fa: => F[A])(handleError: PartialFunction[Throwable, AA]): F[AA] def recoverEitherTFromNonFatal[A, AA >: A, B, BB >: B]( efab: => XorT[A, B] )( handleError: PartialFunction[Throwable, Xor[AA, BB]] ): XorT[AA, BB] }
The text was updated successfully, but these errors were encountered:
Close #118 - Add CanRecover
a24e0c3
Close #118 - Add CanRecover - Added: tests
d005dd7
Merge pull request #119 from Kevin-Lee/task/118/add-CanRecover
10079f3
kevin-lee
Successfully merging a pull request may close this issue.
Task
Summary
Add
CanRecover[F[_]]
Project Details
Version:
1.2.0
Description
The text was updated successfully, but these errors were encountered: