RBNode

scala.collection.mutable.CollisionProofHashMap.RBNode
final class RBNode[K, V](var key: K, var hash: Int, var value: V, var red: Boolean, var left: RBNode[K, V], var right: RBNode[K, V], var parent: RBNode[K, V]) extends Node

Attributes

Source
CollisionProofHashMap.scala
Graph
Supertypes
class Node
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def foreach[U](f: ((K, V)) => U): Unit

Attributes

Source
CollisionProofHashMap.scala
def foreachEntry[U](f: (K, V) => U): Unit

Attributes

Source
CollisionProofHashMap.scala
def foreachNode[U](f: (RBNode[K, V]) => U): Unit

Attributes

Source
CollisionProofHashMap.scala
def getNode(k: K, h: Int)(implicit ord: Ordering[K]): RBNode[K, V]

Attributes

Source
CollisionProofHashMap.scala
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
Source
CollisionProofHashMap.scala

Concrete fields

var hash: Int

Attributes

Source
CollisionProofHashMap.scala
var key: K

Attributes

Source
CollisionProofHashMap.scala
var left: RBNode[K, V]

Attributes

Source
CollisionProofHashMap.scala
var parent: RBNode[K, V]

Attributes

Source
CollisionProofHashMap.scala
var red: Boolean

Attributes

Source
CollisionProofHashMap.scala
var right: RBNode[K, V]

Attributes

Source
CollisionProofHashMap.scala
var value: V

Attributes

Source
CollisionProofHashMap.scala