* @brief Check if the data container is sorted. * @details This function checks if the sorted portion of the data, indicated by the member variable mSortedPartSize, is equal to the total size of the data container mData. This is used to determine if the data is sorted. * @return True if the data is sorted, false otherwise. */
| 961 | * @return True if the data is sorted, false otherwise. |
| 962 | */ |
| 963 | bool IsSorted() const |
| 964 | { |
| 965 | return (mSortedPartSize == mData.size()); |
| 966 | } |
| 967 | |
| 968 | ///@} |
| 969 | ///@name Input and output |
no test coverage detected