Classes Files

Wombat::Containers::RedBlackTree::Node

Inherits from Wombat.Containers.MapEntry

Public Functions

  Name
  Node(object key, object value)
object getKey()
object getValue()
object setValue(object value)
bool IsRed(Node node)
bool IsBlack(Node node)

Public Properties

  Name
object Key
object Value
Node Left
Node Right
NodeColor Color
Node? this[bool direction]

Public Functions Documentation

function Node

Node(
    object key,
    object value
)

function getKey

object getKey()

function getValue

object getValue()

function setValue

object setValue(
    object value
)

function IsRed

static bool IsRed(
    Node node
)

function IsBlack

static bool IsBlack(
    Node node
)

Public Property Documentation

property Key

object Key;

property Value

object Value;

property Left

Node Left;

property Right

Node Right;

property Color

NodeColor Color;

property this[bool direction]

Node? this[bool direction];

Updated on 2023-03-31 at 15:30:17 +0100