-
Notifications
You must be signed in to change notification settings - Fork 0
/
queue.js
25 lines (23 loc) · 856 Bytes
/
queue.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export const __name__ = 'queues';
export const deque = 'A multi-producer, multi-consumer queue.';
export const Empty = function() {};
export const Full = function() {};
export const LifoQueue = function() {};
export const PriorityQueue = function() {};
export const Queue = function() {};
export const SimpleQueue = function() {};
export const heappop = function() {};
export const heappush = function() {};
export const threading = function() {};
export const time = function() {};
/*
export const _PySimpleQueue = function() {};
export const __all__ = function() {};
export const __builtins__ = function() {};
export const __cached__ = function() {};
export const __doc__ = function() {};
export const __file__ = function() {};
export const __loader__ = function() {};
export const __package__ = function() {};
export const __spec__ = function() {};
*/