This is a followup question to No Scala mutable list
I want to use a mutable list in Scala. I can chose from
If you want to append items you shouldn't use a List at all. Lists are good when you want to prepend items. Use ArrayBuffer instead.
List
ArrayBuffer