dropRight

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

dropRight は、このコレクションの最後の i 件を捨てて、残りを保持するコレクションを作成します。