reverse

trait Collection[A] {
  def reverse: Collection[A]
}

reverse は、要素の順序を反転したコレクションを作成します。