| 2291 | _nulars.ForEach(AddDicFuncNul, &context); |
| 2292 | } |
| 2293 | void GameState::AppendFunctionList(AutoArray<RStringS>& dic, bool (*filter)(const char* word)) const |
| 2294 | { |
| 2295 | DicContext context(dic, filter); |
| 2296 | _functions.ForEach(AddDicFuncUn, &context); |
| 2297 | } |
| 2298 | void GameState::AppendOperatorList(AutoArray<RStringS>& dic, bool (*filter)(const char* word)) const |
| 2299 | { |
| 2300 | DicContext context(dic, filter); |
no test coverage detected