Back
Close

Introduction to Scala Part2 : Collections

Bubu
5,799 views

Traversable : Addition

  • Operation ++
  • Goal: appends two traversables together, or appends all elements of an iterator to a traversable.
> List(1, 2, 3) ++ List(4, 5, 6)
res0: List[Int] = List(1, 2, 3, 4, 5, 6)
concatate two lists
concatate an empty list with a list
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io