in scala/runtime/matching
class Address

class Address(l: Int*)
extends Ordered[Address]
with ScalaObject

Address holds the path in reverse Dewey notation

Method Summary
  def compareTo[b >: Address](view: (b) => Ordered[b])(y: b): Int
     Result of comparing `this' with operand `that'.
  def down: Address
  def right: Address
     precond: p is nonempty
override def toString(): String

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/Ordered-class
<, <=, >, >=

Methods inherited from scala/ScalaObject-class
getScalaType

Method Detail

compareTo

  def compareTo[b >: Address](view: (b) => Ordered[b])(y: b): 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

down

  def down: Address

right

  def right: Address
precond: p is nonempty

toString

  override def toString(): String