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 Catching
Catching
Version: 0.4.0
0.4.0
Add Catching to provide convenient ways to use CanCatch.
CanCatch
e.g.)
import effectie.Effectful._ import effectie.cats.Catching._ catchNonFatal(effectOf(something))(throwable => SomeError) // F[Either[SomeError, Something]] catchNonFatalF(something)(throwable => SomeError) // F[Either[SomeError, Something]] // The same as catchNonFatal(effectOf(something))(throwable => SomeError)
import effectie.Effectful._ import effectie.scalaz.Catching._ catchNonFatal(effectOf(something))(throwable => SomeError) // F[SomeError \/ Something] catchNonFatalF(something)(throwable => SomeError) // F[SomeError \/ Something] // The same as catchNonFatal(effectOf(something))(throwable => SomeError)
The text was updated successfully, but these errors were encountered:
Close #62 - Add Catching
27280a8
Merge pull request #66 from Kevin-Lee/task/62/add-Catching
4c25636
kevin-lee
Successfully merging a pull request may close this issue.
Task
Summary
Add
Catching
Project Details
Version:
0.4.0
Description
Add Catching
to provide convenient ways to useCanCatch
.e.g.)
The text was updated successfully, but these errors were encountered: