-
```scala
Mircos-MacBook-Pro-2:~/tmp$ cat Foo.scala
object Foo {
def tagVersion = {
type TagVersion = {
def from(): Option[TagVersion]
}
null : TagVersion
}
def fo…
-
My application crashed on a special environment where all so native libraries can't work. Are they required or can graaljs run in interpreter mode without them?
```
[info] running chester.cli.Main…
-
jersey-scala includes an injection provider for @QueryParams of scala collection types, such as Option[String], but doesn't currently support @FormParams.
-
-
It would be nice to have EnumMap in Scala that does query operations on enum key with high efficiency as java.util.EnumMap does. In my code I fill up the map with handlers, that handle specific messag…
-
## Reproduction steps
Scala version: 2.13.14
```scala
scala> "".tail
val res0: String = ""
scala> "".init
val res1: String = ""
scala> def tailOf[A](x: Seq[A]) = x.tail
def tailOf[A](x…
-
This is a port of https://github.com/scala/collection-strawman/issues/155.
The idea is to have something similar to https://superruzafa.github.io/visual-scala-reference/index.html#groupby for the…
-
There are two main things that need to be done here:
- In my current quick-and-dirty setup, RoboCORD loads all JSON files that it needs to use into memory. This should be replaced by a lazy system s…
-
## Scala 2.13.14
```scala
def concat[B >: Char](suffix: IterableOnce[B]): immutable.IndexedSeq[B] = ...
def concat(suffix: IterableOnce[Char]): String = ...
@`inline` def concat(suffix: Stri…
-
getting error for count() and first() methods.
i am using spark 1.6.1 and scala 2.11.8 versions.