| 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); |
| 2301 | _operators.ForEach(AddDicFuncBin, &context); |
| 2302 | } |
| 2303 | |
| 2304 | GameState::GameState() |
| 2305 | { |
no test coverage detected