I'm new to Scala, coming from python and trying to wrap my head around some of the syntax and conventions. I'm curious why the following doesn't work:
scala> val tmp = List[Int].apply(1,2,3)
<console>:7: error: missing arguments for method apply in object List;
follow this method with `_' if you want to treat it as a partially applied function
val tmp = List[Int].apply(1,2,3)
Yet, when I do the following, I get no error:
scala> val tmp = List.apply(1,2,3)
tmp: List[Int] = List(1,2,3)
scala> val tmp = List[Int](1,2,3)
tmp: List[Int] = List(1,2,3)
Why does List[Int].apply() give me an error?
Thanks for your help!