Dart API Referencedart:coreimplSplayTreeNode<K, V>

SplayTreeNode<K, V> Class

A node in a splay tree. It holds the key, the value and the left and right children in the tree.

Constructors

Code new SplayTreeNode(K key, V value) #

SplayTreeNode(K this.key, V this.value);

Fields

Code K key #

K key;

Code SplayTreeNode<K, V> left #

SplayTreeNode<K, V> left;
SplayTreeNode<K, V> right;

Code V value #

V value;