UNPKG
tree-multimap-typed
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.1
2.0.0
1.54.3
1.54.2
1.54.1
1.53.7
1.53.6
1.53.5
1.53.4
1.53.3
1.53.2
1.53.1
1.53.0
1.52.9
1.52.8
1.52.6
1.52.5
1.52.4
1.52.3
1.52.2
1.52.1
1.51.9
1.51.8
1.51.7
1.51.5
1.51.4
1.51.3
1.51.2
1.51.1
1.51.0
1.50.9
1.50.8
1.50.7
1.50.6
1.50.5
1.50.4
1.50.3
1.50.2
1.50.1
1.50.0
1.49.9
1.49.8
1.49.7
1.49.6
1.49.5
1.49.4
1.49.3
1.49.2
1.49.1
1.49.0
1.48.9
1.48.8
1.48.7
1.48.6
1.48.5
1.48.4
1.48.3
1.48.2
1.48.1
1.48.0
1.47.9
1.47.8
1.47.7
1.47.6
1.47.5
1.47.4
1.47.3
1.47.2
1.47.1
1.46.8
1.46.7
1.46.6
1.46.5
1.46.3
1.46.2
1.46.1
1.45.3
1.45.2
1.45.1
1.45.0
1.44.1
1.44.0
1.43.3
1.43.1
1.43.0
1.42.9
1.42.8
1.42.7
1.42.6
1.42.5
Tree Multimap
data-structure-typed-docs.vercel.app
zrwusa/data-structure-typed
tree-multimap-typed
/
src
/
types
/
data-structures
/
binary-tree
/
red-black-tree.ts
6 lines
(3 loc)
•
153 B
text/typescript
View Raw
1
2
3
4
5
6
import
type
{
BSTOptions
}
from
'./bst'
;
export
type
RBTNColor
=
'RED'
|
'BLACK'
;
export
type
RedBlackTreeOptions
<K, V, R> =
BSTOptions
<K, V, R> & {};