MCPcopy Create free account
hub / github.com/numpy/numpy / quicksort_ulong

Function quicksort_ulong

numpy/core/src/npysort/quicksort.cpp:770–777  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

768 return quicksort_<npy::long_tag>((npy_long *)start, n);
769}
770NPY_NO_EXPORT int
771quicksort_ulong(void *start, npy_intp n, void *NPY_UNUSED(varr))
772{
773 if (quicksort_dispatch((npy_ulong *)start, n)) {
774 return 0;
775 }
776 return quicksort_<npy::ulong_tag>((npy_ulong *)start, n);
777}
778NPY_NO_EXPORT int
779quicksort_longlong(void *start, npy_intp n, void *NPY_UNUSED(varr))
780{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected