Implemented compound merge/sort/unique algorithm for optimization by Flast · Pull Request #12 · Flast/flat_map
New algorithm does (stable) sort, unique, and inplace merge at once. It may reduce number of scanning count of range. TODO: Use other sort algorithm for smaller range instead of merge sort. Perf...