in scala
class PartiallyOrdered

mixin abstract class PartiallyOrdered [ a ]
extends java.lang.Object
with ScalaObject
A class for partially ordered data.
author:
Martin Odersky
version:
1.0, 23/04/2004

Def Summary
def < [ a <: b ] ( that : b ) ( view$1 : Function1 ) : scala.Boolean

def <= [ a <: b ] ( that : b ) ( view$3 : Function1 ) : scala.Boolean

def > [ a <: b ] ( that : b ) ( view$2 : Function1 ) : scala.Boolean

def >= [ a <: b ] ( that : b ) ( view$4 : Function1 ) : scala.Boolean

def tryCompareTo [ a <: b ] ( that : b ) ( view$0 : Function1 ) : Option
Result of comparing `this' with operand `that'. Returns `None' if operands are not comparable. If operands are comparable, returns `Some(x)' where x < 0 iff this < that x == 0 iff this == that x > 0 iff this > that


Def Detail
def < [ a <: b ]( that : b ) ( view$1 : Function1 ) : scala.Boolean

def <= [ a <: b ]( that : b ) ( view$3 : Function1 ) : scala.Boolean

def > [ a <: b ]( that : b ) ( view$2 : Function1 ) : scala.Boolean

def >= [ a <: b ]( that : b ) ( view$4 : Function1 ) : scala.Boolean

def tryCompareTo [ a <: b ]( that : b ) ( view$0 : Function1 ) : Option
Result of comparing `this' with operand `that'. Returns `None' if operands are not comparable. If operands are comparable, returns `Some(x)' where x < 0 iff this < that x == 0 iff this == that x > 0 iff this > that