| 
 | 
          Scala 1.3.0.7 | |||
| Method Summary | |
| def <[b >: a](view: (b) => Ordered[b])(that: b): Boolean | |
| def <=[b >: a](view: (b) => Ordered[b])(that: b): Boolean | |
| def >[b >: a](view: (b) => Ordered[b])(that: b): Boolean | |
| def >=[b >: a](view: (b) => Ordered[b])(that: b): Boolean | |
| 
        abstract | def compareTo[b >: a](view: (b) => Ordered[b])(that: b): IntResult 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 compareTo[b >: a](view: (b) => Ordered[b])(that: b): Int
x < 0    iff    this < that
  x == 0   iff    this == that
  x > 0    iff    this > that
   
def <[b >: a](view: (b) => Ordered[b])(that: b): Boolean
def >[b >: a](view: (b) => Ordered[b])(that: b): Boolean
def <=[b >: a](view: (b) => Ordered[b])(that: b): Boolean
def >=[b >: a](view: (b) => Ordered[b])(that: b): Boolean
| 
 | 
          Scala 1.3.0.7 | |||