All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.util.SortedSet.scala Maven / Gradle / Ivy

package java.util

trait SortedSet[E] extends Set[E] {
  def comparator(): Comparator[_ >: E]
  def subSet(fromElement: E, toElement: E): SortedSet[E]
  def headSet(toElement: E): SortedSet[E]
  def tailSet(fromElement: E): SortedSet[E]
  def first(): E
  def last(): E
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy