Skip to main content
Version: v1

TSTNode Interface

Signature

export interface TSTNode<T>

Type Parameters

Parameter Description
T

Properties

Property Modifiers Type Description
c string
left optional TSTNode<T>
mid optional TSTNode<T>
right optional TSTNode<T>
val optional T

Property Details

c

Signature

c: string;

Type: string

left

Signature

left?: TSTNode<T>;

Type: TSTNode<T>

mid

Signature

mid?: TSTNode<T>;

Type: TSTNode<T>

right

Signature

right?: TSTNode<T>;

Type: TSTNode<T>

val

Signature

val?: T;

Type: T