Packages

final class RBNode[K, V] extends Node

Source
CollisionProofHashMap.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RBNode
  2. Node
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RBNode(key: K, hash: Int, value: V, red: Boolean, left: RBNode[K, V], right: RBNode[K, V], parent: RBNode[K, V])

Value Members

  1. def foreach[U](f: ((K, V)) => U): Unit
  2. def foreachEntry[U](f: (K, V) => U): Unit
  3. def foreachNode[U](f: (RBNode[K, V]) => U): Unit
  4. def getNode(k: K, h: Int)(implicit ord: Ordering[K]): RBNode[K, V]
    Annotations
    @tailrec()
  5. var hash: Int
  6. var key: K
  7. var left: RBNode[K, V]
  8. var parent: RBNode[K, V]
  9. var red: Boolean
  10. var right: RBNode[K, V]
  11. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    RBNode → AnyRef → Any
  12. var value: V