| 108 | } |
| 109 | |
| 110 | bool ModifiedOrDeleted(uint32_t featureIndex) const |
| 111 | { |
| 112 | return binary_search(m_deleted.begin(), m_deleted.end(), featureIndex) || |
| 113 | binary_search(m_modified.begin(), m_modified.end(), featureIndex); |
| 114 | } |
| 115 | |
| 116 | template <typename Fn> |
| 117 | void ForEachModifiedOrCreated(Fn && fn) |
no test coverage detected