TODO duplicated logic, find shared place for it
| 21 | |
| 22 | // TODO duplicated logic, find shared place for it |
| 23 | static inline void _prepareIterateAll |
| 24 | ( |
| 25 | rax *map, |
| 26 | raxIterator *iter |
| 27 | ) { |
| 28 | raxStart(iter, map); |
| 29 | raxSeek(iter, "^", NULL, 0); |
| 30 | } |
| 31 | |
| 32 | // Note each function call within given expression |
| 33 | // Example: given the expression: "abs(max(min(a), abs(k)))" |
no outgoing calls
no test coverage detected