takeRight

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

takeRight creates a collection by keeping the last i elements of this collection and discarding the rest.