In Scala, is there any difference at all between Nil and List()?
If not, which one is more idiomatic Scala style? Both for creating new empty lists and pattern matching on empty lists.
|
In Scala, is there any difference at all between If not, which one is more idiomatic Scala style? Both for creating new empty lists and pattern matching on empty lists. |
|||
|
|
Nil is more idiomatic and can be preferred in most cases. Questions? |
|||||||||||||||||
|
|
User unknown has shown that the run time value of both
This is of particular importance when it is used to infer a type, such as in a fold's accumulator:
|
|||||
|
|
As user unknown's answer shows, they are the same object. Idiomatically Nil should be preferred because it is nice and short. There's an exception though: if an explicit type is needed for whatever reason I think
is nicer than
|
|||||
|