Scala Collections | Scala Book | Scala Documentation
docs.scala-lang.org › collections-101If you’re coming to Scala from Java, the best thing you can do is forget about the Java collections classes and use the Scala collections classes as they’re intended to be used. As one author of this book has said, “Speaking from personal experience, when I first started working with Scala I tried to use Java collections classes in my Scala code, and all that did was slow down my progress.”
Scala - Collections - tutorialspoint.com
www.tutorialspoint.com › scala › scala_collectionsCollections with Description; 1: Scala Lists. Scala's List[T] is a linked list of type T. 2: Scala Sets. A set is a collection of pairwise different elements of the same type. 3: Scala Maps. A Map is a collection of key/value pairs. Any value can be retrieved based on its key. 4: Scala Tuples. Unlike an array or list, a tuple can hold objects with different types. 5