-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Missing functions for RWST #2304
Comments
You're spoiling the fun with these easy implementations! |
Speaking of def listen[A, L](w: WriterT[F, L, A]): WriterT[F, L, (A, L)] =
WriterT(F.map(w.run) {
case (l, a) => (l, a -> l)
}) |
Hi @LukaJCB I wouldn't mind picking this one up. |
@calvinbrown085 Did you end up working on this? |
@YuvalItzchakov I have not yet, I have not found the time! If someone else would like to pick this up please feel free! |
@calvinbrown085 so I will take it :) |
Hey @satansk are you still working on it? If not would you mind me taking it from you? |
@CucumisSativus I almost forget about this issue, but I will continue to work on this :) |
@satansk so, good luck with it! :) |
Hey @satansk, are You working on that issue? If not, can I take it? |
@wojciechUrbanski go ahead, it's yours :) |
Happy to add it if no one is doing it. |
This can be closed now. Thanks. |
We're currently missing
listen
fromWriter
andlocal
fromReader
.Here's an easy implementation:
The text was updated successfully, but these errors were encountered: