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
Now that we have a Cats module, we should provide a generic (abstracting away IO) version of:
IO
new Transformation.AbsorbError[EitherT[IO, *, *], IO] { def apply[E, A](fa: EitherT[IO, E, A], injectError: E => Throwable): IO[A] = fa.leftMap(injectError).rethrowT }
and the corresponding Transformation.SurfaceError transformation.
Transformation.SurfaceError
The text was updated successfully, but these errors were encountered:
I don't have a problem with that
Sorry, something went wrong.
we could also have some derivation of Transformation / conversions of ~> so that smithy4s.~> can be used interchangeably with cats.~>.
Transformation
~>
smithy4s.~>
cats.~>
No branches or pull requests
Now that we have a Cats module, we should provide a generic (abstracting away
IO
) version of:and the corresponding
Transformation.SurfaceError
transformation.The text was updated successfully, but these errors were encountered: