| 71 | RangeMap<Key, Val, KeyRangeRef, Metric, MetricFunc>::map.lower_bound(range.end)); |
| 72 | } |
| 73 | void rawInsert(Key const& key, Val const& value) { |
| 74 | MapPair<Key, Val> pair(key, value); |
| 75 | RangeMap<Key, Val, KeyRangeRef, Metric, MetricFunc>::map.insert( |
| 76 | pair, true, RangeMap<Key, Val, KeyRangeRef, Metric, MetricFunc>::mf(pair)); |
| 77 | } |
| 78 | void rawInsert(const std::vector<std::pair<MapPair<Key, Val>, Metric>>& pairs) { |
| 79 | RangeMap<Key, Val, KeyRangeRef, Metric, MetricFunc>::map.insert(pairs); |
| 80 | } |
no test coverage detected