| 323 | |
| 324 | template <class C, class TGetKey> |
| 325 | void StableSortUniqueBy(C& c, const TGetKey& getKey) { |
| 326 | StableSortBy(c, getKey); |
| 327 | c.erase(UniqueBy(c.begin(), c.end(), getKey), c.end()); |
| 328 | } |
| 329 | |
| 330 | template <class C, class TValue> |
| 331 | void Erase(C& c, const TValue& value) { |
no test coverage detected