prepended

trait Collection[A] {
  def prepended[B >: A](b: B): Collection[B]
  def +:[B >: A](b: B): Collection[B]
}

prepended creates a copy of this collection by adding the element b at the beginning.