-
Updated
Mar 10, 2022 - Python
scalajs
Here are 552 public repositories matching this topic...
Show[Throwable]
The .forall pattern is a great way to create an optional filter for a field that could be defined or not:
case class Person(name: String, age: Int)
val nameOpt: Option[String] = Some("Joe")
run { query[Person].filter(p => lift(nameOpt).forall(_ == p.name)) }
// SELECT p.name, p.age FROM Person p WHERE ? IS NULL OR ? = p.name
// (i.e. when nameOpt := None then the `WHERE ? IS NULL`-
Updated
Mar 28, 2022 - Scala
A such question have been raised again: https://stackoverflow.com/q/56132229/10793449
We should clarify an using an arbitrary scala code as an attribute value.
Is your feature request related to a problem? Please describe.
When playing on physical board and using chess clock feature in the mobile app, there is a need to know the no. of moves played so far
Describe the solution you'd like
Keep a move counter initialised to 0
On every tap (either side) increment it by 0.5
A getter can be made for display: current no. of moves, which floors t
-
Updated
Apr 5, 2017 - Scala
-
Updated
Dec 13, 2021 - Scala
-
Updated
Mar 28, 2022 - Scala
Suggested on Telegram.
It may be easier to understand the examples if they don't show both distage and BIO at the same time, so we may want to have a variant of distage-example that uses just distage alone, using a monomorphic effect type everywhere.
-
Updated
Feb 24, 2022 - Scala
- 2 Udash apps should work just fine in a single JVM
- the API is pretty ugly and even the docs suggest wrapping it
-
Updated
Mar 25, 2022 - Scala
-
Updated
Mar 28, 2022 - Scala
As part of #283 the behavior of the right mouse button was altered to prevent the context menu from popping up. We want to add an advanced config flag so the user can control its behavior.
-
Updated
Mar 22, 2022 - Scala
-
Updated
Mar 28, 2022 - Scala
-
Updated
Dec 11, 2020 - Scala
-
Updated
Aug 5, 2021
-
Updated
Mar 27, 2022 - Scala
-
Updated
Mar 22, 2022 - Scala
-
Updated
May 29, 2020 - Scala
-
Updated
Jan 14, 2018
-
Updated
Mar 6, 2022 - Scala
Improve this page
Add a description, image, and links to the scalajs topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the scalajs 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)?