NAME
PDLA::Perldl2::Plugin::NiceSlice - enable PDLA NiceSlice syntax
DESCRIPTION
This plugin enables one to use the PDLA::NiceSlice syntax in an instance of Devel::REPL
such as the new Perldl2 shell, pdla2
. Without the plugin, array slicing looks like this:
pdla> use PDLA;
pdla> $a = sequence(10);
$PDLA1 = [0 1 2 3 4 5 6 7 8 9];
pdla> $a->slice("2:9:2");
$PDLA1 = [2 4 6 8];
After the NiceSlice plugin has been loaded, you can use this:
pdla> $a(2:9:2)
$PDLA1 = [2 4 6 8];
CAVEATS
PDLA::NiceSlice
uses Perl source preprocessing. If you need 100% pure Perl compatibility, use the slice method instead.
SEE ALSO
PDLA::NiceSlice
, Devel::REPL
, PDLA::Perldl
AUTHOR
Chris Marshall, <chm at cpan dot org>
COPYRIGHT AND LICENSE
Copyright (C) 2010 by Christopher Marshall
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.