dropWhile

trait Collection[A] {
  def dropWhile(p: (A) => Boolean): Collection[A]
}

dropWhile は、先頭から始めて要素が述語 p を満たす間は捨て続けて、残りを保持したコレクションを作成します。