| 2261 | |
| 2262 | |
| 2263 | void Map::applyOnMatchingObjects(const std::function<void (Object*)>& operation, const std::function<bool (const Object*)>& condition) |
| 2264 | { |
| 2265 | for (auto part : parts) |
| 2266 | part->applyOnMatchingObjects(operation, condition); |
| 2267 | } |
| 2268 | |
| 2269 | |
| 2270 | void Map::applyOnMatchingObjects(const std::function<void (const Object*)>& operation, const std::function<bool (const Object*)>& condition) const |
no outgoing calls
no test coverage detected