| 
 | 
          Scala 1.3.0.7 | |||
| Method Summary | |
| def <[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Boolean | |
| def <=[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Boolean | |
| def >[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Boolean | |
| def >=[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Boolean | |
| 
        abstract | def tryCompareTo[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Option[Int]Result of comparing `this' with operand `that'. | 
| Methods inherited from java/lang/Object-class | 
| clone, eq, equals, finalize, getClass, hashCode, notify, notifyAll, synchronized, toString, wait, wait, wait | 
| Methods inherited from scala/Any-class | 
| !=, ==, asInstanceOf, isInstanceOf, match | 
| Methods inherited from scala/ScalaObject-class | 
| getType | 
| Method Detail | 
abstract def tryCompareTo[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Option[Int]
x < 0    iff    this < that
  x == 0   iff    this == that
  x > 0    iff    this > that
   
def <[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Boolean
def >[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Boolean
def <=[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Boolean
def >=[b >: a](view: (b) => PartiallyOrdered[b])(that: b): Boolean
| 
 | 
          Scala 1.3.0.7 | |||