UNPKG
red-black-tree-typed
Version:
latest (2.6.0)
2.6.0
2.5.3
2.5.2
2.5.1
2.5.0
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.0
2.2.8
2.2.7
2.2.6
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.2
2.1.1
2.1.0
2.0.5
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
red black tree
data-structure-typed-docs.vercel.app
zrwusa/data-structure-typed
red-black-tree-typed
/
src
/
types
/
data-structures
/
heap
/
heap.ts
8 lines
(6 loc)
•
257 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
Comparator
}
from
'../../common'
;
import
{
IterableElementBaseOptions
}
from
'../base'
;
/** Configuration options for Heap and PriorityQueue. */
export
type
HeapOptions
<E, R> =
IterableElementBaseOptions
<E, R> & {
comparator
?:
Comparator
<E>; };