We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
scala> case class Foo(x: Int, ys: Int*) defined class Foo scala> Foo(5) res0: Foo = Foo(5,WrappedArray()) scala> Foo(5, 10) res1: Foo = Foo(5,WrappedArray(10))