takeRight

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

takeRight は、このコレクションの末尾 i 個の要素を保持し、残りは捨てたコレクションを作成します。