Ordering

sealed abstract
class Ordering(val toInt: Int, val name: String) extends Product with Serializable

A ternary marker of how two values relate in an ordering.

Note

scalaz calls its version of scala.math.Ordering, scalaz.Order. This Ordering is analogous to the Ints returned by scala.math.Ordering.

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object EQ
object GT
object LT

Value members

Abstract methods

Inherited methods

def canEqual(that: Any): Boolean
Inherited from
Equals
def productArity: Int
Inherited from
Product
def productElement(n: Int): Any
Inherited from
Product
def productElementName(n: Int): String
Inherited from
Product
def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product
def productPrefix: String
Inherited from
Product

Concrete fields

val name: String
val toInt: Int