logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Perinci::Sub::Util::Sort - Sort routines

Author

       perlancar <perlancar@cpan.org>

Bugs

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

       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.

perl v5.38.2                                       2024-05-26                      Perinci::Sub::Util::Sort(3pm)

Contributing

       To contribute, you can send patches by email/via RT, or send pull requests on GitHub.

       Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then
       test via:

        % prove -l

       If you want to build the distribution (e.g. to try to install it locally on your system), you can install
       Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR,
       and sometimes one or two other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required
       beyond that are considered a bug and can be reported to me.

Functions

sort_args(\%args)=>LIST
       Sort argument in args property by pos, then by name.

Homepage

       Please visit the project's homepage at <https://metacpan.org/release/Perinci-Sub-Util>.

Name

       Perinci::Sub::Util::Sort - Sort routines

Source

       Source repository is at <https://github.com/perlancar/perl-Perinci-Sub-Util>.

Synopsis

        use Perinci::Sub::Util::Sort qw(sort_args);

        my $meta = {
            v => 1.1,
            args => {
                a1 => { pos=>0 },
                a2 => { pos=>1 },
                opt1 => {},
                opt2 => {},
            },
        };
        my @args = sort_args($meta->{args}); # ('a1','a2','opt1','opt2')

Version

       This document describes version 0.472 of Perinci::Sub::Util::Sort (from Perl distribution Perinci-Sub-
       Util), released on 2023-10-28.

See Also