RedBlackTreeNode<T> Class

Template Parameters | Constructors & Destructor | Member Functions | Type Aliases | Member Variables

Definition

Line 461 of System.Base/RedBlackTree.cm

Inheritance

Template Parameters

T

Constructors & Destructor

public RedBlackTreeNode(T&& value_, RedBlackTreeNode* parent_)
public RedBlackTreeNode(const T& value_, RedBlackTreeNode* parent_)

Member Functions

public inline T& Value()
public inline const T& Value() const

Type Aliases

public typedef ValueType T

Member Variables

private T value

Constructor& Destructor Details

RedBlackTreeNode Constructor

public RedBlackTreeNode(T&& value_, RedBlackTreeNode* parent_)

Definition
Line 468 of System.Base/RedBlackTree.cm


RedBlackTreeNode Constructor

public RedBlackTreeNode(const T& value_, RedBlackTreeNode* parent_)

Definition
Line 465 of System.Base/RedBlackTree.cm


Member Function Details

Value Member Function

public inline T& Value()

Definition
Line 475 of System.Base/RedBlackTree.cm


Value Member Function

public inline const T& Value()

Definition
Line 471 of System.Base/RedBlackTree.cm