|
| #define | ARRAY_FOR_EACH_TYPE(type, obj, containter) |
| | Special array iteration macro - can be used like FOREACH_T only that type is assumed to be a pointer. More...
|
| |
| #define | ARRAY_FOR_EACH_TYPE_REVERSE(type, obj, containter) |
| | Special array iteration macro - can be used instead of FOREACH_T_REVERSE only that type is assumed to be a pointer. More...
|
| |
| #define | ARRAY_FOR_EACH_TYPE_I(type, obj, containter, index) |
| | Special array iteration macro - Version with explicit loop variable index. More...
|
| |
| #define | ARRAY_FOR_EACH_TYPE_REVERSE_I(type, obj, containter, index) |
| | Special array iteration macro - Like ARRAY_FOR_EACH_TYPE_I only backwards. More...
|
| |