| 291 | } |
| 292 | |
| 293 | inline bool shouldUseParallelSort(size_t size) { return size > details::serialThreshold; } |
| 294 | |
| 295 | // NOTE: This implementation is suitable only for large ranges and when the comparison |
| 296 | // is expensive, e.g. strings, so that it can be done in parallel. When sorting a simple |