| 317 | |
| 318 | template <class C, class TGetKey> |
| 319 | void SortUniqueBy(C& c, const TGetKey& getKey) { |
| 320 | SortBy(c, getKey); |
| 321 | c.erase(UniqueBy(c.begin(), c.end(), getKey), c.end()); |
| 322 | } |
| 323 | |
| 324 | template <class C, class TGetKey> |
| 325 | void StableSortUniqueBy(C& c, const TGetKey& getKey) { |