reverse

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

reverse creates a collection by reversing the order of the elements.