org.isarnproject.collections.mixmaps.redblack.tree

Node

trait Node[K] extends Serializable

Base class of a Red/Black tree node

K

The key type

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Node
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def iNode(color: Color, d: Data[K], lsub: Node[K], rsub: Node[K]): INode[K]

    Instantiate an internal node.

    Instantiate an internal node.

    Attributes
    protected
  2. abstract def keyOrdering: Ordering[K]

    The ordering that is applied to key values

  3. abstract def node(k: K): Option[INode[K]]

    Obtain the node stored at a given key if it exists, None otherwise

  4. abstract def nodeMax: Option[INode[K]]

  5. abstract def nodeMin: Option[INode[K]]

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def append(tl: Node[K], tr: Node[K]): Node[K]

    Attributes
    protected
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. final def bNode(d: Data[K], lsub: Node[K], rsub: Node[K]): INode[K]

    create a new Black node from a key, value, left subtree and right subtree

    create a new Black node from a key, value, left subtree and right subtree

    Attributes
    protected
  9. final def balance(node: Node[K]): Node[K]

    Attributes
    protected
  10. final def balanceDel(x: Data[K], tl: Node[K], tr: Node[K]): INode[K]

    Attributes
    protected
  11. final def balanceLeft(x: Data[K], tl: Node[K], tr: Node[K]): INode[K]

    Attributes
    protected
  12. final def balanceRight(x: Data[K], tl: Node[K], tr: Node[K]): INode[K]

    Attributes
    protected
  13. final def blacken(node: Node[K]): Node[K]

    Attributes
    protected
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. final def delLeft(node: INode[K], k: K): INode[K]

    Attributes
    protected
  16. final def delRight(node: INode[K], k: K): INode[K]

    Attributes
    protected
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. final def rNode(d: Data[K], lsub: Node[K], rsub: Node[K]): INode[K]

    create a new Red node from a key, value, left subtree and right subtree

    create a new Red node from a key, value, left subtree and right subtree

    Attributes
    protected
  27. final def redden(node: Node[K]): Node[K]

    Attributes
    protected
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped