AuroraForEach/README.md

1.1 KiB

AuroraForEach

Implements a AU_FOR_EACH_n X-style macro that accepts a macro parameter where 'N' is the input parameters of the macro

Example

#define HELLO_WORLD(n)  n
#define COUNT_TO_9      AU_FOR_EACH(HELLO_WORLD, 1, 2, 3, 4, 5, 6, 7, 8, 9)
     
const char *kCountTo9 = AU_STRINGIFY(COUNT_TO_9); // generic what macro
assert(strcmp(kCountTo9, "1 2 3 4 5 6 7 8 9") == 0);
#define HELLO_WORLD(n)        , n
#define HELLO_WORLD_FIRST(n)  0, n
#define COUNT_TO_9      AU_FOR_EACH_FIRST(HELLO_WORLD_FIRST, HELLO_WORLD, 1, 2, 3, 4, 5, 6, 7, 8, 9)
     
const char *kCountTo9 = AU_STRINGIFY(COUNT_TO_9); // generic what macro
assert(strcmp(kCountTo9, "0, 1, 2, 3, 4, 5, 6, 7, 8, 9") == 0);

Note, simple tests akin to the above examples may fail due to whitespace padding.

Users

Aurora Interfaces (Advanced use case)

License

Public Domain or Unlicense

Credit

Based on