| 750 | // module_builtin_runtime_sort.cpp. |
| 751 | template <typename T, typename Compare> |
| 752 | inline void das_sort(T *first, T *last, Compare cmp) |
| 753 | { |
| 754 | das_sort_skeleton_t<T, Compare, false>(first, last, cmp); |
| 755 | } |
| 756 | |
| 757 | // das_sort_block — typed pure-block-partition introsort. No Hoare fallback |
| 758 | // at any sub-range size. Bench-only ceiling test for the block-partition |
no outgoing calls
no test coverage detected