Sciss
Sciss
If I add pages that are not contained in any `@@@ index` blocks, they lack the standard navigation bar. I need to add pages that do not appear in the...
I had hoped that this would work: ``` --- title: Short Title for TOC and window --- # Longer Title ``` Is there a way to set the title that...
https://github.com/dispatch/reboot/issues/210 depends on `net.liftweb#lift-json` to be available for Scala 2.13.0-M5.
## reproduction steps using Scala 2.13.4, example: ```scala case object Foo extends Product { override final val productPrefix = "Foo" } println(Foo) ``` ## problem Causes a runtime error in...
https://github.com/scala/docs.scala-lang/blob/main/_overviews/scala3-book/taste-collections.md I just intuitively tried if tuple `apply` works with static indices, and it does, which is very cool. I don't know if that should be the preferred way to...
When type hierarchy is introduced: https://docs.scala-lang.org/scala3/book/first-look-at-types.html it is said that > …it means that we cannot pattern match on values of type `Any`, but only on values that are a...
They are introduced here: https://docs.scala-lang.org/scala3/book/taste-vars-data-types.html and here: https://docs.scala-lang.org/scala3/book/first-look-at-types.html The description is vague and not helpful: > When you need really large numbers, use the BigInt and BigDecimal types: > >...
Swing auto-detects `JComponent`as the `message` parameter. For example Dialog.showMessage(message = new javax.swing.JLabel("Hello")) To use that feature, we currently have to say `.peer` Dialog.showMessage(message = new Label("Hello").peer) It would be good...
These should be shortcuts to `layoutManager.setHgap`, `getHgap` etc.
Should a `CONTRIBUTING.md` guide be added? What is the policy now that the project is "community maintained". Is there still a CLA that needs to be signed, etc.? And what...