drop

trait Collection[A] {
  def drop(i: Int): Collection[A]
}

drop creates a collection by discarding the first i elements of this collection and keeping the rest.