appendedAll

trait Collection[A] {
  def appendedAll[B >: A](bs: Collection[B]): Collection[B]
  def :++[B >: A](bs: Collection[B]): Collection[B]
}

appendedAll creates a copy of this collection by adding the collection bs at the end.