in scala/collection/immutable/Tree-class
class ITree

protected case class ITree(t: GBTree[A,B])
extends InsertTree[A,B]
with ScalaObject
with CaseClass

Field Summary
  val t: GBTree[A,B]

Method Summary
  def insert_left(value: B, bigger: GBTree[A,B]): ITree
  def insert_right(value: B, smaller: GBTree[A,B]): ITree
  def node: GBTree[A,B]

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

Methods inherited from scala/collection/immutable/InsertTree-class
aNode, anInsertTree

Field Detail

t

  val t: GBTree[A,B]
Method Detail

insert_left

  def insert_left(value: B, bigger: GBTree[A,B]): ITree

insert_right

  def insert_right(value: B, smaller: GBTree[A,B]): ITree

node

  def node: GBTree[A,B]