distinct

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

distinct creates a copy of this collection without duplicated elements.