-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathctl_queue.h
More file actions
51 lines (47 loc) · 907 Bytes
/
Copy pathctl_queue.h
File metadata and controls
51 lines (47 loc) · 907 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* FIFO deque
SPDX-License-Identifier: MIT */
#ifndef T
#error "Template type T undefined for <ctl_queue.h>"
#endif
// TODO emplace
#define push_back push
#define pop_front pop
#define at __AT
#define begin __BEGIN
#define end __END
#define push_front __PUSH_FRONT
#define pop_back __PUSH_BACK
#define erase __ERASE
#define insert __INSERT
#define resize __RESIZE
#define assign __ASSIGN
#define clear __CLEAR
#define ranged_sort __RANGED_SORT
#define sort __SORT
#define range __RANGE
#define each __each
#define step __STEP
#define remove_if __REMOVE_IF
#define CTL_QUEUE
#define deq queue
#include <./ctl_deque.h>
#undef deq
#undef CTL_QUEUE
#undef push_back
#undef pop_front
#undef at
#undef begin
#undef end
#undef push_front
#undef pop_back
#undef erase
#undef insert
#undef resize
#undef assign
#undef clear
#undef ranged_sort
#undef sort
#undef range
#undef each
#undef step
#undef remove_if