Generates a sequence of code with configurable separator. Example: #define FOO(i, _) MY_PWM ## i { LISTIFY(PWM_COUNT, FOO, (,)) } The above two lines expand to: { MY_PWM0 , MY_PWM1 }
The length of the sequence. Must be an integer literal less than 255.
F
A macro function that accepts at least two arguments: F(i, ...). @p F is called repeatedly in the expansion. Its first argument @p i is the index in the sequence, and the variable list of arguments passed to LISTIFY are passed through to @p F.
sep
Separator (e.g. comma or semicolon). Must be in parentheses; this is required to enable providing a comma as separator.
Notes
Calling LISTIFY with undefined arguments has undefined behavior.