| 808 | return quicksort_<npy::float_tag>((npy_float *)start, n); |
| 809 | } |
| 810 | NPY_NO_EXPORT int |
| 811 | quicksort_double(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 812 | { |
| 813 | if (quicksort_dispatch((npy_double *)start, n)) { |
| 814 | return 0; |
| 815 | } |
| 816 | return quicksort_<npy::double_tag>((npy_double *)start, n); |
| 817 | } |
| 818 | NPY_NO_EXPORT int |
| 819 | quicksort_longdouble(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 820 | { |
nothing calls this directly
no test coverage detected