in scala/runtime/matching
class TreeNT

case class TreeNT(i: Int)
extends NonTerm
with ScalaObject
with CaseClass
with Ordered[TreeNT]
Implementing classes or objects:
object ANYTREE

tree nonterminal. holds set of binding variable indices.

Field Summary
  val i: Int

Method Summary
  def compareTo[b >: TreeNT](view: (b) => Ordered[b])(y: b): Int
     Result of comparing `this' with operand `that'.
  var vset: Set[Int]

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/CaseClass-class
caseArity, caseElement, caseName

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

Methods inherited from scala/ScalaObject-class
getScalaType

Methods inherited from scala/runtime/matching/NonTerm-class
toString

Field Detail

i

  val i: Int
Method Detail

vset

  var vset: Set[Int]

compareTo

  def compareTo[b >: TreeNT](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