Searched refs:GetSorted (Results 1 – 1 of 1) sorted by relevance
44 std::vector<Item> GetSorted(std::function<bool(const Item& a, const Item& b)> sort_func) const { in GetSorted() function77 return GetSorted([](const Item& a, const Item& b) -> bool { return a.count > b.count; }); in GetSortedHighToLow()81 return GetSorted([](const Item& a, const Item& b) -> bool { return a.count < b.count; }); in GetSortedLowToHigh()