杨锴
2024-10-09 e987bc09f955e01c2835f01e3a6af20723a579f9
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
/**
  *Macros for metaprogramming
  *ExtendedC
 *
  *Copyright (C) 2012 Justin Spahr-Summers
  *Released under the MIT license
 */
 
#ifndef OBS_EXTC_METAMACROS_H
#define OBS_EXTC_METAMACROS_H
 
/**
  *Executes one or more expressions (which may have a void type, such as a call
  *to a function that returns no value) and always returns true.
 */
#define obs_metamacro_exprify(...) \
    ((__VA_ARGS__), true)
 
/**
  *Returns a string representation of VALUE after full macro expansion.
 */
#define obs_metamacro_stringify(VALUE) \
        obs_metamacro_stringify_(VALUE)
 
/**
  *Returns A and B concatenated after full macro expansion.
 */
#define obs_metamacro_concat(A, B) \
        obs_metamacro_concat_(A, B)
 
/**
  *Returns the Nth variadic argument (starting from zero). At least
  *N + 1 variadic arguments must be given. N must be between zero and twenty,
  *inclusive.
 */
#define obs_metamacro_at(N, ...) \
        obs_metamacro_concat(obs_metamacro_at, N)(__VA_ARGS__)
 
/**
  *Returns the number of arguments (up to twenty) provided to the macro. At
  *least one argument must be provided.
 *
  *Inspired by P99: http://p99.gforge.inria.fr
 */
#define obs_metamacro_argcount(...) \
        obs_metamacro_at(20, __VA_ARGS__, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
 
/**
  *Identical to #obs_metamacro_foreach_cxt, except that no CONTEXT argument is
  *given. Only the index and current argument will thus be passed to MACRO.
 */
#define obs_metamacro_foreach(MACRO, SEP, ...) \
        obs_metamacro_foreach_cxt(obs_metamacro_foreach_iter, SEP, MACRO, __VA_ARGS__)
 
/**
  *For each consecutive variadic argument (up to twenty), MACRO is passed the
  *zero-based index of the current argument, CONTEXT, and then the argument
  *itself. The results of adjoining invocations of MACRO are then separated by
  *SEP.
 *
  *Inspired by P99: http://p99.gforge.inria.fr
 */
#define obs_metamacro_foreach_cxt(MACRO, SEP, CONTEXT, ...) \
        obs_metamacro_concat(obs_metamacro_foreach_cxt, obs_metamacro_argcount(__VA_ARGS__))(MACRO, SEP, CONTEXT, __VA_ARGS__)
 
/**
  *Identical to #obs_metamacro_foreach_cxt. This can be used when the former would
  *fail due to recursive macro expansion.
 */
#define obs_metamacro_foreach_cxt_recursive(MACRO, SEP, CONTEXT, ...) \
        obs_metamacro_concat(obs_metamacro_foreach_cxt_recursive, obs_metamacro_argcount(__VA_ARGS__))(MACRO, SEP, CONTEXT, __VA_ARGS__)
 
/**
  *In consecutive order, appends each variadic argument (up to twenty) onto
  *BASE. The resulting concatenations are then separated by SEP.
 *
  *This is primarily useful to manipulate a list of macro invocations into instead
  *invoking a different, possibly related macro.
 */
#define obs_metamacro_foreach_concat(BASE, SEP, ...) \
        obs_metamacro_foreach_cxt(obs_metamacro_foreach_concat_iter, SEP, BASE, __VA_ARGS__)
 
/**
  *Iterates COUNT times, each time invoking MACRO with the current index
  *(starting at zero) and CONTEXT. The results of adjoining invocations of MACRO
  *are then separated by SEP.
 *
  *COUNT must be an integer between zero and twenty, inclusive.
 */
#define obs_metamacro_for_cxt(COUNT, MACRO, SEP, CONTEXT) \
        obs_metamacro_concat(obs_metamacro_for_cxt, COUNT)(MACRO, SEP, CONTEXT)
 
/**
  *Returns the first argument given. At least one argument must be provided.
 *
  *This is useful when implementing a variadic macro, where you may have only
  *one variadic argument, but no way to retrieve it (for example, because \c ...
  *always needs to match at least one argument).
 *
  *@code
 
#define varmacro(...) \
    obs_metamacro_head(__VA_ARGS__)
 
  *@endcode
 */
#define obs_metamacro_head(...) \
        obs_metamacro_head_(__VA_ARGS__, 0)
 
/**
  *Returns every argument except the first. At least two arguments must be
  *provided.
 */
#define obs_metamacro_tail(...) \
        obs_metamacro_tail_(__VA_ARGS__)
 
/**
  *Returns the first N (up to twenty) variadic arguments as a new argument list.
  *At least N variadic arguments must be provided.
 */
#define obs_metamacro_take(N, ...) \
        obs_metamacro_concat(obs_metamacro_take, N)(__VA_ARGS__)
 
/**
  *Removes the first N (up to twenty) variadic arguments from the given argument
  *list. At least N variadic arguments must be provided.
 */
#define obs_metamacro_drop(N, ...) \
        obs_metamacro_concat(obs_metamacro_drop, N)(__VA_ARGS__)
 
/**
  *Decrements VAL, which must be a number between zero and twenty, inclusive.
 *
  *This is primarily useful when dealing with indexes and counts in
  *metaprogramming.
 */
#define obs_metamacro_dec(VAL) \
        obs_metamacro_at(VAL, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
 
/**
  *Increments VAL, which must be a number between zero and twenty, inclusive.
 *
  *This is primarily useful when dealing with indexes and counts in
  *metaprogramming.
 */
#define obs_metamacro_inc(VAL) \
        obs_metamacro_at(VAL, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21)
 
/**
  *If A is equal to B, the next argument list is expanded; otherwise, the
  *argument list after that is expanded. A and B must be numbers between zero
  *and twenty, inclusive. Additionally, B must be greater than or equal to A.
 *
  *@code
 
// expands to true
obs_metamacro_if_eq(0, 0)(true)(false)
 
// expands to false
obs_metamacro_if_eq(0, 1)(true)(false)
 
  *@endcode
 *
  *This is primarily useful when dealing with indexes and counts in
  *metaprogramming.
 */
#define obs_metamacro_if_eq(A, B) \
        obs_metamacro_concat(obs_metamacro_if_eq, A)(B)
 
/**
  *Identical to #obs_metamacro_if_eq. This can be used when the former would fail
  *due to recursive macro expansion.
 */
#define obs_metamacro_if_eq_recursive(A, B) \
        obs_metamacro_concat(obs_metamacro_if_eq_recursive, A)(B)
 
/**
  *Returns 1 if N is an even number, or 0 otherwise. N must be between zero and
  *twenty, inclusive.
 *
  *For the purposes of this test, zero is considered even.
 */
#define obs_metamacro_is_even(N) \
        obs_metamacro_at(N, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1)
 
/**
  *Returns the logical NOT of B, which must be the number zero or one.
 */
#define obs_metamacro_not(B) \
        obs_metamacro_at(B, 1, 0)
 
// IMPLEMENTATION DETAILS FOLLOW!
// Do not write code that depends on anything below this line.
#define obs_metamacro_stringify_(VALUE) # VALUE
#define obs_metamacro_concat_(A, B) A ## B
#define obs_metamacro_foreach_iter(INDEX, MACRO, ARG) MACRO(INDEX, ARG)
#define obs_metamacro_head_(FIRST, ...) FIRST
#define obs_metamacro_tail_(FIRST, ...) __VA_ARGS__
#define obs_metamacro_consume_(...)
#define obs_metamacro_expand_(...) __VA_ARGS__
 
// implemented from scratch so that obs_metamacro_concat() doesn't end up nesting
#define obs_metamacro_foreach_concat_iter(INDEX, BASE, ARG) obs_metamacro_foreach_concat_iter_(BASE, ARG)
#define obs_metamacro_foreach_concat_iter_(BASE, ARG) BASE ## ARG
 
// obs_metamacro_at expansions
#define obs_metamacro_at0(...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at1(_0, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at2(_0, _1, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at3(_0, _1, _2, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at4(_0, _1, _2, _3, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at5(_0, _1, _2, _3, _4, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at6(_0, _1, _2, _3, _4, _5, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at7(_0, _1, _2, _3, _4, _5, _6, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at8(_0, _1, _2, _3, _4, _5, _6, _7, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at9(_0, _1, _2, _3, _4, _5, _6, _7, _8, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at10(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at11(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at12(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at13(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at14(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at15(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at16(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at17(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at18(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at19(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, ...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_at20(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, ...) obs_metamacro_head(__VA_ARGS__)
 
// obs_metamacro_foreach_cxt expansions
#define obs_metamacro_foreach_cxt0(MACRO, SEP, CONTEXT)
#define obs_metamacro_foreach_cxt1(MACRO, SEP, CONTEXT, _0) MACRO(0, CONTEXT, _0)
 
#define obs_metamacro_foreach_cxt2(MACRO, SEP, CONTEXT, _0, _1) \
    obs_metamacro_foreach_cxt1(MACRO, SEP, CONTEXT, _0) \
    SEP \
    MACRO(1, CONTEXT, _1)
 
#define obs_metamacro_foreach_cxt3(MACRO, SEP, CONTEXT, _0, _1, _2) \
    obs_metamacro_foreach_cxt2(MACRO, SEP, CONTEXT, _0, _1) \
    SEP \
    MACRO(2, CONTEXT, _2)
 
#define obs_metamacro_foreach_cxt4(MACRO, SEP, CONTEXT, _0, _1, _2, _3) \
    obs_metamacro_foreach_cxt3(MACRO, SEP, CONTEXT, _0, _1, _2) \
    SEP \
    MACRO(3, CONTEXT, _3)
 
#define obs_metamacro_foreach_cxt5(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4) \
    obs_metamacro_foreach_cxt4(MACRO, SEP, CONTEXT, _0, _1, _2, _3) \
    SEP \
    MACRO(4, CONTEXT, _4)
 
#define obs_metamacro_foreach_cxt6(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5) \
    obs_metamacro_foreach_cxt5(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4) \
    SEP \
    MACRO(5, CONTEXT, _5)
 
#define obs_metamacro_foreach_cxt7(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6) \
    obs_metamacro_foreach_cxt6(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5) \
    SEP \
    MACRO(6, CONTEXT, _6)
 
#define obs_metamacro_foreach_cxt8(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7) \
    obs_metamacro_foreach_cxt7(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6) \
    SEP \
    MACRO(7, CONTEXT, _7)
 
#define obs_metamacro_foreach_cxt9(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8) \
    obs_metamacro_foreach_cxt8(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7) \
    SEP \
    MACRO(8, CONTEXT, _8)
 
#define obs_metamacro_foreach_cxt10(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9) \
    obs_metamacro_foreach_cxt9(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8) \
    SEP \
    MACRO(9, CONTEXT, _9)
 
#define obs_metamacro_foreach_cxt11(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10) \
    obs_metamacro_foreach_cxt10(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9) \
    SEP \
    MACRO(10, CONTEXT, _10)
 
#define obs_metamacro_foreach_cxt12(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11) \
    obs_metamacro_foreach_cxt11(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10) \
    SEP \
    MACRO(11, CONTEXT, _11)
 
#define obs_metamacro_foreach_cxt13(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12) \
    obs_metamacro_foreach_cxt12(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11) \
    SEP \
    MACRO(12, CONTEXT, _12)
 
#define obs_metamacro_foreach_cxt14(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13) \
    obs_metamacro_foreach_cxt13(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12) \
    SEP \
    MACRO(13, CONTEXT, _13)
 
#define obs_metamacro_foreach_cxt15(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14) \
    obs_metamacro_foreach_cxt14(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13) \
    SEP \
    MACRO(14, CONTEXT, _14)
 
#define obs_metamacro_foreach_cxt16(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15) \
    obs_metamacro_foreach_cxt15(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14) \
    SEP \
    MACRO(15, CONTEXT, _15)
 
#define obs_metamacro_foreach_cxt17(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16) \
    obs_metamacro_foreach_cxt16(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15) \
    SEP \
    MACRO(16, CONTEXT, _16)
 
#define obs_metamacro_foreach_cxt18(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17) \
    obs_metamacro_foreach_cxt17(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16) \
    SEP \
    MACRO(17, CONTEXT, _17)
 
#define obs_metamacro_foreach_cxt19(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18) \
    obs_metamacro_foreach_cxt18(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17) \
    SEP \
    MACRO(18, CONTEXT, _18)
 
#define obs_metamacro_foreach_cxt20(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19) \
    obs_metamacro_foreach_cxt19(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18) \
    SEP \
    MACRO(19, CONTEXT, _19)
 
// obs_metamacro_foreach_cxt_recursive expansions
#define obs_metamacro_foreach_cxt_recursive0(MACRO, SEP, CONTEXT)
#define obs_metamacro_foreach_cxt_recursive1(MACRO, SEP, CONTEXT, _0) MACRO(0, CONTEXT, _0)
 
#define obs_metamacro_foreach_cxt_recursive2(MACRO, SEP, CONTEXT, _0, _1) \
    obs_metamacro_foreach_cxt_recursive1(MACRO, SEP, CONTEXT, _0) \
    SEP \
    MACRO(1, CONTEXT, _1)
 
#define obs_metamacro_foreach_cxt_recursive3(MACRO, SEP, CONTEXT, _0, _1, _2) \
    obs_metamacro_foreach_cxt_recursive2(MACRO, SEP, CONTEXT, _0, _1) \
    SEP \
    MACRO(2, CONTEXT, _2)
 
#define obs_metamacro_foreach_cxt_recursive4(MACRO, SEP, CONTEXT, _0, _1, _2, _3) \
    obs_metamacro_foreach_cxt_recursive3(MACRO, SEP, CONTEXT, _0, _1, _2) \
    SEP \
    MACRO(3, CONTEXT, _3)
 
#define obs_metamacro_foreach_cxt_recursive5(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4) \
    obs_metamacro_foreach_cxt_recursive4(MACRO, SEP, CONTEXT, _0, _1, _2, _3) \
    SEP \
    MACRO(4, CONTEXT, _4)
 
#define obs_metamacro_foreach_cxt_recursive6(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5) \
    obs_metamacro_foreach_cxt_recursive5(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4) \
    SEP \
    MACRO(5, CONTEXT, _5)
 
#define obs_metamacro_foreach_cxt_recursive7(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6) \
    obs_metamacro_foreach_cxt_recursive6(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5) \
    SEP \
    MACRO(6, CONTEXT, _6)
 
#define obs_metamacro_foreach_cxt_recursive8(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7) \
    obs_metamacro_foreach_cxt_recursive7(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6) \
    SEP \
    MACRO(7, CONTEXT, _7)
 
#define obs_metamacro_foreach_cxt_recursive9(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8) \
    obs_metamacro_foreach_cxt_recursive8(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7) \
    SEP \
    MACRO(8, CONTEXT, _8)
 
#define obs_metamacro_foreach_cxt_recursive10(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9) \
    obs_metamacro_foreach_cxt_recursive9(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8) \
    SEP \
    MACRO(9, CONTEXT, _9)
 
#define obs_metamacro_foreach_cxt_recursive11(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10) \
    obs_metamacro_foreach_cxt_recursive10(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9) \
    SEP \
    MACRO(10, CONTEXT, _10)
 
#define obs_metamacro_foreach_cxt_recursive12(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11) \
    obs_metamacro_foreach_cxt_recursive11(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10) \
    SEP \
    MACRO(11, CONTEXT, _11)
 
#define obs_metamacro_foreach_cxt_recursive13(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12) \
    obs_metamacro_foreach_cxt_recursive12(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11) \
    SEP \
    MACRO(12, CONTEXT, _12)
 
#define obs_metamacro_foreach_cxt_recursive14(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13) \
    obs_metamacro_foreach_cxt_recursive13(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12) \
    SEP \
    MACRO(13, CONTEXT, _13)
 
#define obs_metamacro_foreach_cxt_recursive15(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14) \
    obs_metamacro_foreach_cxt_recursive14(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13) \
    SEP \
    MACRO(14, CONTEXT, _14)
 
#define obs_metamacro_foreach_cxt_recursive16(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15) \
    obs_metamacro_foreach_cxt_recursive15(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14) \
    SEP \
    MACRO(15, CONTEXT, _15)
 
#define obs_metamacro_foreach_cxt_recursive17(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16) \
    obs_metamacro_foreach_cxt_recursive16(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15) \
    SEP \
    MACRO(16, CONTEXT, _16)
 
#define obs_metamacro_foreach_cxt_recursive18(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17) \
    obs_metamacro_foreach_cxt_recursive17(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16) \
    SEP \
    MACRO(17, CONTEXT, _17)
 
#define obs_metamacro_foreach_cxt_recursive19(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18) \
    obs_metamacro_foreach_cxt_recursive18(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17) \
    SEP \
    MACRO(18, CONTEXT, _18)
 
#define obs_metamacro_foreach_cxt_recursive20(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19) \
    obs_metamacro_foreach_cxt_recursive19(MACRO, SEP, CONTEXT, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18) \
    SEP \
    MACRO(19, CONTEXT, _19)
 
// obs_metamacro_for_cxt expansions
#define obs_metamacro_for_cxt0(MACRO, SEP, CONTEXT)
#define obs_metamacro_for_cxt1(MACRO, SEP, CONTEXT) MACRO(0, CONTEXT)
 
#define obs_metamacro_for_cxt2(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt1(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(1, CONTEXT)
 
#define obs_metamacro_for_cxt3(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt2(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(2, CONTEXT)
 
#define obs_metamacro_for_cxt4(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt3(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(3, CONTEXT)
 
#define obs_metamacro_for_cxt5(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt4(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(4, CONTEXT)
 
#define obs_metamacro_for_cxt6(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt5(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(5, CONTEXT)
 
#define obs_metamacro_for_cxt7(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt6(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(6, CONTEXT)
 
#define obs_metamacro_for_cxt8(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt7(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(7, CONTEXT)
 
#define obs_metamacro_for_cxt9(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt8(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(8, CONTEXT)
 
#define obs_metamacro_for_cxt10(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt9(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(9, CONTEXT)
 
#define obs_metamacro_for_cxt11(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt10(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(10, CONTEXT)
 
#define obs_metamacro_for_cxt12(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt11(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(11, CONTEXT)
 
#define obs_metamacro_for_cxt13(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt12(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(12, CONTEXT)
 
#define obs_metamacro_for_cxt14(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt13(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(13, CONTEXT)
 
#define obs_metamacro_for_cxt15(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt14(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(14, CONTEXT)
 
#define obs_metamacro_for_cxt16(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt15(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(15, CONTEXT)
 
#define obs_metamacro_for_cxt17(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt16(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(16, CONTEXT)
 
#define obs_metamacro_for_cxt18(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt17(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(17, CONTEXT)
 
#define obs_metamacro_for_cxt19(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt18(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(18, CONTEXT)
 
#define obs_metamacro_for_cxt20(MACRO, SEP, CONTEXT) \
    obs_metamacro_for_cxt19(MACRO, SEP, CONTEXT) \
    SEP \
    MACRO(19, CONTEXT)
 
// obs_metamacro_if_eq expansions
#define obs_metamacro_if_eq0(VALUE) \
    obs_metamacro_concat(obs_metamacro_if_eq0_, VALUE)
 
#define obs_metamacro_if_eq0_0(...) __VA_ARGS__ obs_metamacro_consume_
#define obs_metamacro_if_eq0_1(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_2(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_3(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_4(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_5(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_6(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_7(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_8(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_9(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_10(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_11(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_12(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_13(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_14(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_15(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_16(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_17(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_18(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_19(...) obs_metamacro_expand_
#define obs_metamacro_if_eq0_20(...) obs_metamacro_expand_
 
#define obs_metamacro_if_eq1(VALUE) obs_metamacro_if_eq0(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq2(VALUE) obs_metamacro_if_eq1(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq3(VALUE) obs_metamacro_if_eq2(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq4(VALUE) obs_metamacro_if_eq3(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq5(VALUE) obs_metamacro_if_eq4(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq6(VALUE) obs_metamacro_if_eq5(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq7(VALUE) obs_metamacro_if_eq6(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq8(VALUE) obs_metamacro_if_eq7(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq9(VALUE) obs_metamacro_if_eq8(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq10(VALUE) obs_metamacro_if_eq9(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq11(VALUE) obs_metamacro_if_eq10(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq12(VALUE) obs_metamacro_if_eq11(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq13(VALUE) obs_metamacro_if_eq12(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq14(VALUE) obs_metamacro_if_eq13(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq15(VALUE) obs_metamacro_if_eq14(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq16(VALUE) obs_metamacro_if_eq15(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq17(VALUE) obs_metamacro_if_eq16(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq18(VALUE) obs_metamacro_if_eq17(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq19(VALUE) obs_metamacro_if_eq18(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq20(VALUE) obs_metamacro_if_eq19(obs_metamacro_dec(VALUE))
 
// obs_metamacro_if_eq_recursive expansions
#define obs_metamacro_if_eq_recursive0(VALUE) \
    obs_metamacro_concat(obs_metamacro_if_eq_recursive0_, VALUE)
 
#define obs_metamacro_if_eq_recursive0_0(...) __VA_ARGS__ obs_metamacro_consume_
#define obs_metamacro_if_eq_recursive0_1(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_2(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_3(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_4(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_5(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_6(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_7(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_8(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_9(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_10(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_11(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_12(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_13(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_14(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_15(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_16(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_17(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_18(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_19(...) obs_metamacro_expand_
#define obs_metamacro_if_eq_recursive0_20(...) obs_metamacro_expand_
 
#define obs_metamacro_if_eq_recursive1(VALUE) obs_metamacro_if_eq_recursive0(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive2(VALUE) obs_metamacro_if_eq_recursive1(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive3(VALUE) obs_metamacro_if_eq_recursive2(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive4(VALUE) obs_metamacro_if_eq_recursive3(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive5(VALUE) obs_metamacro_if_eq_recursive4(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive6(VALUE) obs_metamacro_if_eq_recursive5(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive7(VALUE) obs_metamacro_if_eq_recursive6(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive8(VALUE) obs_metamacro_if_eq_recursive7(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive9(VALUE) obs_metamacro_if_eq_recursive8(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive10(VALUE) obs_metamacro_if_eq_recursive9(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive11(VALUE) obs_metamacro_if_eq_recursive10(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive12(VALUE) obs_metamacro_if_eq_recursive11(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive13(VALUE) obs_metamacro_if_eq_recursive12(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive14(VALUE) obs_metamacro_if_eq_recursive13(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive15(VALUE) obs_metamacro_if_eq_recursive14(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive16(VALUE) obs_metamacro_if_eq_recursive15(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive17(VALUE) obs_metamacro_if_eq_recursive16(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive18(VALUE) obs_metamacro_if_eq_recursive17(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive19(VALUE) obs_metamacro_if_eq_recursive18(obs_metamacro_dec(VALUE))
#define obs_metamacro_if_eq_recursive20(VALUE) obs_metamacro_if_eq_recursive19(obs_metamacro_dec(VALUE))
 
// obs_metamacro_take expansions
#define obs_metamacro_take0(...)
#define obs_metamacro_take1(...) obs_metamacro_head(__VA_ARGS__)
#define obs_metamacro_take2(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take1(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take3(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take2(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take4(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take3(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take5(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take4(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take6(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take5(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take7(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take6(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take8(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take7(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take9(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take8(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take10(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take9(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take11(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take10(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take12(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take11(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take13(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take12(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take14(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take13(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take15(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take14(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take16(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take15(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take17(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take16(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take18(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take17(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take19(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take18(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_take20(...) obs_metamacro_head(__VA_ARGS__), obs_metamacro_take19(obs_metamacro_tail(__VA_ARGS__))
 
// obs_metamacro_drop expansions
#define obs_metamacro_drop0(...) __VA_ARGS__
#define obs_metamacro_drop1(...) obs_metamacro_tail(__VA_ARGS__)
#define obs_metamacro_drop2(...) obs_metamacro_drop1(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop3(...) obs_metamacro_drop2(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop4(...) obs_metamacro_drop3(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop5(...) obs_metamacro_drop4(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop6(...) obs_metamacro_drop5(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop7(...) obs_metamacro_drop6(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop8(...) obs_metamacro_drop7(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop9(...) obs_metamacro_drop8(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop10(...) obs_metamacro_drop9(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop11(...) obs_metamacro_drop10(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop12(...) obs_metamacro_drop11(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop13(...) obs_metamacro_drop12(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop14(...) obs_metamacro_drop13(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop15(...) obs_metamacro_drop14(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop16(...) obs_metamacro_drop15(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop17(...) obs_metamacro_drop16(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop18(...) obs_metamacro_drop17(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop19(...) obs_metamacro_drop18(obs_metamacro_tail(__VA_ARGS__))
#define obs_metamacro_drop20(...) obs_metamacro_drop19(obs_metamacro_tail(__VA_ARGS__))
 
#endif