| 3369 | struct scblk { |
| 3370 | template <int dimSize> |
| 3371 | static __forceinline void srt ( TDim<TT,dimSize> & arr, int32_t, int32_t, CompareFn && cmp, Context *, LineInfoArg * ) { |
| 3372 | das_sort(arr.data, arr.data + dimSize, cmp); |
| 3373 | } |
| 3374 | template <int dimSize> |
| 3375 | static __forceinline void srtr ( TDim<TT,dimSize> & arr, int32_t elemSize, int32_t length, CompareFn && cmp, Context * context, LineInfoArg * lineinfo ) { |
| 3376 | srt(arr,elemSize,length,das::forward<CompareFn>(cmp),context,lineinfo); |
nothing calls this directly
no test coverage detected