-
Updated
Jan 7, 2022 - Python
scalajs
Here are 544 public repositories matching this topic...
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
Jan 9, 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.
Since we have all variant playable offline it would be nice to have the same help pages the website has but embedded in the app to be seen offline.
Help would be accessible from offline games menus and displayed in a modal window (like the one for the tournament FAQ).
-
Updated
Apr 5, 2017 - Scala
-
Updated
Dec 13, 2021 - Scala
-
Updated
Jan 10, 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
Dec 26, 2021 - Scala
-
Updated
Jan 9, 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
Jan 10, 2022 - Scala
withUpActions feels odd, I'm expecting onClick. The reason it's not called onClick is that you do not run arbitrary commands as a result, instead you always emit an event.
Proposals welcome.
-
Updated
Dec 31, 2021 - Scala
-
Updated
Jan 10, 2022 - Scala
-
Updated
Dec 11, 2020 - Scala
-
Updated
Aug 5, 2021
-
Updated
Jan 9, 2022 - Scala
-
Updated
Dec 21, 2021 - Scala
-
Updated
May 29, 2020 - Scala
-
Updated
Jan 14, 2018
-
Updated
Dec 21, 2021 - 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)?