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

NAME

Sort::Sub::prereq_ala_perlancar - Sort prereqs PERLANCAR-style

VERSION

This document describes version 0.07 of Sort::Sub::prereq_ala_perlancar (from Perl distribution PERLANCAR-Sort-Sub), released on 2019-12-15.

SYNOPSIS

Generate sorter (accessed as variable) via Sort::Sub import:

 use Sort::Sub '$prereq_ala_perlancar'; # use '$prereq_ala_perlancar<i>' for case-insensitive sorting, '$prereq_ala_perlancar<r>' for reverse sorting
 my @sorted = sort $prereq_ala_perlancar ('item', ...);

Generate sorter (accessed as subroutine):

 use Sort::Sub 'prereq_ala_perlancar<ir>';
 my @sorted = sort {prereq_ala_perlancar} ('item', ...);

Generate directly without Sort::Sub:

 use Sort::Sub::prereq_ala_perlancar;
 my $sorter = Sort::Sub::prereq_ala_perlancar::gen_sorter(
     ci => 1,      # default 0, set 1 to sort case-insensitively
     reverse => 1, # default 0, set 1 to sort in reverse order
 );
 my @sorted = sort $sorter ('item', ...);

Use in shell/CLI with sortsub (from App::sortsub):

 % some-cmd | sortsub prereq_ala_perlancar
 % some-cmd | sortsub prereq_ala_perlancar --ignore-case -r

DESCRIPTION

I sort my prereqs in dist.ini using this rule: perl, then pragmas (sorted ascibetically), then other modules (sorted ascibetically and case-insensitively).

Case-sensitive option is ignored. Sorting is always done using the abovementioned rule.

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/PERLANCAR-Sort-Sub.

SOURCE

Source repository is at https://github.com/perlancar/perl-PERLANCAR-Sort-Sub.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=PERLANCAR-Sort-Sub

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

SEE ALSO

Sort::Sub

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2019, 2017, 2016 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.