 |
NEURON
|
Go to the documentation of this file.
9 for (i = 'A'; i <= 'z'; i++) \
10 ITERATE(qs, symlist[i]) \
11 if ((s = SYM(qs))->type == NAME || s->type == PRIME)
13 #define SYMITER(arg1) \
18 for (i = 'A'; i <= 'z'; i++) \
19 ITERATE(qs, symlist[i]) \
20 if ((s = SYM(qs))->type == arg1)
22 #define SYMITER_STAT \
27 for (i = 'A'; i <= 'z'; i++) \
28 ITERATE(qs, symlist[i]) \
29 if ((s = SYM(qs))->subtype & STAT)
31 #define SYMITER_SUB(arg1) \
36 for (i = 'A'; i <= 'z'; i++) \
37 ITERATE(qs, symlist[i]) \
38 if ((s = SYM(qs))->subtype & (arg1))