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

scalaz.Ordering.scala Maven / Gradle / Ivy

The newest version!
package scalaz

sealed trait Ordering {
  val toInt: Int
}
case object LT extends Ordering {
  val toInt = -1
}
case object EQ extends Ordering {
  val toInt = 0
}
case object GT extends Ordering {
  val toInt = 1
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy