NEURON
symbol.h
Go to the documentation of this file.
1 
2 extern List* symlist[];
3 #define SYMITER(arg1) \
4  for (i = 'A'; i <= 'z'; i++) \
5  ITERATE(qs, symlist[i]) \
6  if ((s = SYM(qs))->type == arg1)
7 
8 #define SYMITER_STAT \
9  for (i = 'A'; i <= 'z'; i++) \
10  ITERATE(qs, symlist[i]) \
11  if ((s = SYM(qs))->subtype & STAT)
List * symlist[]
Definition: symbol.cpp:9
Definition: model.h:8