Tagged Questions
4
votes
2answers
1k views
How to copy a list in Scala
I want to shallow copy a list in Scala.
I wanted to do somehing like:
val myList = List("foo", "bar")
val myListCopy = myList.clone
But the clone method is protected.