monad-transformers
Here are 60 public repositories matching this topic...
-
Updated
May 14, 2020 - C#
I expected Validated to have an ap method or something, but I can't seem to find it. The only docs I can see are https://github.com/aol/cyclops/wiki/Validator, which clearly isn't the current implementation, and I notice aol/cyclops#826 as another issue, but I don't see the proposed ap method.
-
Updated
Apr 25, 2020 - Haskell
-
Updated
Feb 7, 2020 - Scala
Improve docs
I opened this issue to discuss how can we improve the docs.
It's very valuable the input from users, as I have a deep knowledge of the library already, so my view doesn't help a lot.
We can start compiling a list of things we need to add, like another tutorial, some how-to sections, a better readme or doc home page and so on.
-
Updated
May 15, 2020 - Scala
-
Updated
Apr 17, 2020
-
Updated
Feb 25, 2020 - Scala
-
Updated
Sep 12, 2018 - Scala
Something like this
class Resource<A> {
IO<A> acquire;
Consumer1<A> release;
Resource(IO<A> acquire, Consumer1<A> release) {
this.acquire = acquire;
this.release = release;
}
public <B> IO<B> use(Function1<A, IO<B>> use) {
return IO.bracket(acquire, use, release);
}
}-
Updated
May 12, 2020 - Scala
-
Updated
Sep 26, 2018 - PureScript
-
Updated
May 12, 2020 - Scala
-
Updated
Jan 16, 2020 - Scala
-
Updated
Nov 8, 2016 - Haskell
-
Updated
Mar 7, 2019 - Haskell
-
Updated
Jul 28, 2019 - Haskell
-
Updated
Apr 29, 2019 - Haskell
-
Updated
May 14, 2020 - Scala
-
Updated
May 21, 2018 - Haskell
-
Updated
Sep 27, 2018 - Haskell
-
Updated
Apr 19, 2020 - PureScript
-
Updated
Apr 24, 2020 - Haskell
-
Updated
Oct 20, 2019 - Coq
Improve this page
Add a description, image, and links to the monad-transformers topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the monad-transformers topic, visit your repo's landing page and select "manage topics."
What version are you currently using?
LATEST
What would you like to see?
When you are trying to review the first 2 levels of the Open ladder of functional programming using Kotlin and Arrow, I don´t find many examples in the documentation about the following topics: