qsortWithData
fn
void qsortWithData(const(void) * pbase, int totalElems, size_t size, glib.types.CompareDataFunc compareFunc)This is just like the standard C qsort() function, but the comparison routine accepts a user data argument.
This is guaranteed to be a stable sort since version 2.32.
Parameters
pbase | start of array to sort |
totalElems | elements in the array |
size | size of each element |
compareFunc | function to compare elements |