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

PDL::Perldl2::Plugin::NiceSlice - enable PDL NiceSlice syntax

Author

       Chris Marshall, "<chm at cpan dot org>"

Caveats

       "PDL::NiceSlice" uses Perl source preprocessing.  If you need 100% pure Perl compatibility, use the slice
       method instead.

Description

       This plugin enables one to use the PDL::NiceSlice syntax in an instance of "Devel::REPL" such as the new
       Perldl2 shell, "pdl2".  Without the plugin, array slicing looks like this:

         pdl> use PDL;

         pdl> $x = sequence(10);
         $PDL1 = [0 1 2 3 4 5 6 7 8 9];

         pdl> $x->slice("2:9:2");
         $PDL1 = [2 4 6 8];

       After the NiceSlice plugin has been loaded, you can use this:

         pdl> $x(2:9:2)
         $PDL1 = [2 4 6 8];

Name

       PDL::Perldl2::Plugin::NiceSlice - enable PDL NiceSlice syntax

See Also

       "PDL::NiceSlice", "Devel::REPL", "PDL::Perldl"

See Also