I'm trying to pick up some scala. Reading through examples I came across this impossible-to-google nugget:
case 3 => l ::: List(3)
What does the triple colon accomplish?
|
I'm trying to pick up some scala. Reading through examples I came across this impossible-to-google nugget:
What does the triple colon accomplish? |
|||
|
|
Concatenates two lists - javadoc |
|||||||
|
|
To add to gkamal's answer, it's important to understand that methods whose names end in a colon are right-associative. So writing It also helps to know that the scaladocs have a comprehensive index of all methods (and classes, etc) with symbolic names. You can normally reach it by clicking on the |
|||||
|