The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Array Manipulation Functions

Sort an array. Here is an example:

    sortsv(AvARRAY(av), av_top_index(av)+1, Perl_sv_cmp_locale);

Currently this always uses mergesort. See sortsv_flags for a more flexible routine.

Sort an array, with various options.