Sorry for the novice question, but I can't find the shorthand for this in Scala.
val s1 = List(8, 9, 10)
val s2 = List(7, 6, 5)
val s12 = s2.foldLeft(s1)((acc, x) => x :: acc)
assert(s12 === List(5, 6, 7, 8, 9, 10))
Which operator should I use to achieve the same effect?