a library to speed up the development of Fivem scripts and frameworks
fivem-ts - Documentation v0.7.5 • Docs
fivem-ts - Documentation v0.7.5 / Shared / ITreeNode
Represents a node in a binary tree.
• T
The type of the value held by the node.
color:
NodeColor
The color of the node, typically used in Red-Black Trees.
shared/ds/tree/ITreeNode.ts:19
left:
ITreeNode
<T
>
The left child node.
shared/ds/tree/ITreeNode.ts:16
parent:
ITreeNode
<T
>
The parent node.
shared/ds/tree/ITreeNode.ts:18
right:
ITreeNode
<T
>
The right child node.
shared/ds/tree/ITreeNode.ts:17
value:
T
The value stored in the node.