in scala
class Ordered

mixin abstract class Ordered [ a ]
extends java.lang.Object
with scala.ScalaObject
A class for totally ordered data. bq: Note that since version 2006-07-24, this class is no longer covariant in a.
author:
Martin Odersky
version:
2006-07-24

Def Summary
def < ( that : a ) : scala.Boolean

def <= ( that : a ) : scala.Boolean

def > ( that : a ) : scala.Boolean

def >= ( that : a ) : scala.Boolean

def compare ( that : a ) : scala.Int
Result of comparing `this' with operand `that'. returns `x' where x < 0 iff this < that x == 0 iff this == that x > 0 iff this > that
def compareTo ( that : a ) : scala.Int



Def Detail
def < ( that : a ) : scala.Boolean

def <= ( that : a ) : scala.Boolean

def > ( that : a ) : scala.Boolean

def >= ( that : a ) : scala.Boolean

def compare ( that : a ) : scala.Int
Result of comparing `this' with operand `that'. returns `x' where x < 0 iff this < that x == 0 iff this == that x > 0 iff this > that

def compareTo ( that : a ) : scala.Int