| 3525 | struct sscblk { |
| 3526 | template <int dimSize> |
| 3527 | static __forceinline void srt ( TDim<TT,dimSize> & arr, int32_t, int32_t, CompareFn && cmp, Context *, LineInfoArg * ) { |
| 3528 | das_stable_sort(arr.data, arr.data + dimSize, cmp); |
| 3529 | } |
| 3530 | template <int dimSize> |
| 3531 | static __forceinline void srtr ( TDim<TT,dimSize> & arr, int32_t elemSize, int32_t length, CompareFn && cmp, Context * context, LineInfoArg * lineinfo ) { |
| 3532 | srt(arr,elemSize,length,das::forward<CompareFn>(cmp),context,lineinfo); |
nothing calls this directly
no test coverage detected