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

protected case class INode(t1: GBTree[A,B], height: Int, siz: Int)
extends InsertTree[A,B]
with ScalaObject
with CaseClass

Field Summary
  val height: Int
  val siz: Int
  val t1: GBTree[A,B]

Method Summary
protected def balance_p(t: GBTree[A,B], subtree: GBTree[A,B]): InsertTree[A,B]
  def insert_left(value: B, bigger: GBTree[A,B]): InsertTree[A,B]
  def insert_right(value: B, smaller: GBTree[A,B]): InsertTree[A,B]
  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

t1

  val t1: GBTree[A,B]

height

  val height: Int

siz

  val siz: Int
Method Detail

insert_left

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

insert_right

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

balance_p

  protected def balance_p(t: GBTree[A,B], subtree: GBTree[A,B]): InsertTree[A,B]

node

  def node: GBTree[A,B]