scalaz
Here are 110 public repositories matching this topic...
-
Updated
Nov 12, 2020 - Scala
-
Updated
Nov 13, 2020 - Scala
-
Updated
Nov 13, 2020 - Scala
-
Updated
Nov 3, 2020 - Scala
-
Updated
Nov 10, 2020 - Scala
-
Updated
Nov 8, 2020 - Scala
-
Updated
Nov 11, 2020 - Scala
-
Updated
Nov 9, 2020 - Scala
-
Updated
Jul 12, 2017 - Scala
-
Updated
Jun 15, 2018 - Scala
-
Updated
May 24, 2017 - Scala
In scalaz/scalaz#1958 @fommil uses this optimization:
fa match {
case Right(b) => f(b)
case Left(a) => Left(a)
}fa match {
case Right(b) => f(b)
case a => a.asInstanceOf[Either[L, B]]
}perhaps we could detect this particular case and optimize it automatically.
-
Updated
Nov 4, 2020 - Scala
-
Updated
Apr 13, 2019 - Scala
-
Updated
Nov 13, 2020 - Scala
-
Updated
Nov 11, 2020 - Scala
-
Updated
May 8, 2018 - Scala
-
Updated
Jul 29, 2017 - Scala
-
Updated
Nov 3, 2020 - Scala
-
Updated
Nov 4, 2020 - Scala
Improve this page
Add a description, image, and links to the scalaz topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the scalaz topic, visit your repo's landing page and select "manage topics."
I just came across the fact that a
Show[Throwable]exists.import Scalaz._, one needs toimport scalaz.std.java.throwable._What's going on with this? :D
Is it OK if I fix both of these (for 7.2 and 7.3)?