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
mapK
For many T[F[_], A] or T[F[_]], we can add a mapK that does the following
T[F[_], A]
T[F[_]]
class T[F[_], A] { def mapK[F[_], G[_]]()(f: F ~> G): T[G, A]` }
This is non-abstracted part of #1815 The following types can have this mapK method
WriterT
Kleisli
OptionT
EitherT
IdT
EitherK
Tuple2K
Free
FreeT
Func
Nested
OneAnd
@andyscott offered to work on this
The text was updated successfully, but these errors were encountered:
Fixed by #2000
Sorry, something went wrong.
No branches or pull requests
For many
T[F[_], A]
orT[F[_]]
, we can add amapK
that does the followingThis is non-abstracted part of #1815
The following types can have this
mapK
methodWriterT
Kleisli
OptionT
EitherT
IdT
EitherK
Tuple2K
Free
FreeT
Func
Nested
OneAnd
@andyscott offered to work on this
The text was updated successfully, but these errors were encountered: