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] | Null, var right: RBNode[K, V] | Null, var parent: RBNode[K, V] | Null) extends Node

Attributes

Graph
Supertypes
class Node
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def foreach[U](f: ((K, V)) -> U): Unit
def foreachEntry[U](f: (K, V) -> U): Unit
def foreachNode[U](f: RBNode[K, V] -> U): Unit
def getNode(k: K, h: Int)(implicit ord: Ordering[K]): RBNode[K, V] | Null
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

Concrete fields

var hash: Int
var key: K
var left: RBNode[K, V] | Null
var parent: RBNode[K, V] | Null
var red: Boolean
var right: RBNode[K, V] | Null
var value: V