* @brief Sort the elements in the set. * @details This function sorts the elements in the set using the CompareKey comparison function. After sorting, * it updates mSortedPartSize to match the size of the data container. */
| 871 | * it updates mSortedPartSize to match the size of the data container. |
| 872 | */ |
| 873 | void Sort() |
| 874 | { |
| 875 | std::sort(mData.begin(), mData.end(), CompareKey()); |
| 876 | mSortedPartSize = mData.size(); |
| 877 | } |
| 878 | |
| 879 | /** |
| 880 | * @brief Remove duplicate elements from the set. |
nothing calls this directly
no test coverage detected