UNPKG
pisces-data-structure
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
pisces-data-structure
/
src
/
implementations
/
queue
/
index.ts
10 lines
(8 loc)
•
202 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
SinglyQueue
}
from
"./singlyQueue"
;
import
{
DEQueue
}
from
"./dequeue"
;
import
{
PriorityQueue
}
from
"./priorityQueue"
;
export
{
SinglyQueue
,
DEQueue
,
PriorityQueue
, };