appended
trait Collection[A] { def appended[B >: A](b: B): Collection[B] def :+[B >: A](b: B): Collection[B] }
appended creates a copy of this collection by adding the element b at the end.
b