There is a handy page about performance characteristics of the Scala collection classes. Is there similar data on memory footprint?
I have a situation where I'm concerned about memory use and would like to factor this in my choice of collection to use. For instance, between Array[Array[T]]
and Vector[Vector[T]]
.