List-Helpers-XS
view release on metacpan or search on metacpan
lib/List/Helpers/XS.pm view on Meta::CPAN
=head1 SYNOPSIS
use List::Helpers::XS qw/ :shuffle :slice /;
my $slice = random_slice(\@list, $size); # returns array reference, @list is partitial shuffled
random_slice(\@list, $size); # @list is now truncated and shuffled
shuffle(\@list);
shuffle(@list);
# undef value will be skipped
shuffle_multi(\@list1, \@list2, undef, \@list3);
# the same for tied arrays
tie(@list, "MyPackage");
shuffle(@list);
shuffle(\@list);
my $slice = random_slice(\@list, $size); # returns array reference
=head1 DESCRIPTION
This module provides some rare but usefull functions to work with arrays.
It supports tied arrays.
=head2 random_slice
This method receives the array and the amount of required elements to be shuffled,
shuffles array's elements and returns the array reference to the new
arrays with C<num> elements from original one.
If C<num> is equal or higher than amount of elements in array, then
it won't do any work.
It doesn't shuffle the whole array, it shuffles only C<num> elements and returns only them.
So, if you need to shuffle and get back only a part of array, then this method can be faster than others approaches.
Be aware that the original array will be shuffled too, but it won't be sliced.
In void context the original list will be truncated and shuffled.
=head2 shuflle
Shuffles the provided array.
Doesn't return anything.
=head2 shuffle_multi
Shuffles multiple arrays.
Each array must be passed as array reference.
All undefined arrays will be skipped.
This method will allow you to save some time by getting rid of extra calls.
You can pass so many arguments as Perl stack allows.
=head1 Benchmarks
Benchmarks of C<random_slice> method in comparison with C<List::MoreUtils::samples> and
C<List::Util::sample> showed that current version of C<random_slice> is very similar to
the first ones in some cases. But in case of huge amount of iterations it starts to slow
down due to some performance degradation.
So, the usage of C<List::MoreUtils::samples> (it's the fastest now) and C<List::Util::sample> is more preferable.
I'll keep C<random_slice> for backward compatibility.
The benchmark results for C<shuffle> method
shuffle_huge_array List::Helpers::XS::shuffle
shuffle_huge_array -- -5%
List::Helpers::XS::shuffle 5% --
shuffle_array List::Helpers::XS::shuffle
shuffle_array -- -4%
List::Helpers::XS::shuffle 4% --
List::Util::shuffle List::Helpers::XS::shuffle
List::Util::shuffle -- -63%
List::Helpers::XS::shuffle 170% --
=head1 AUTHOR
Chernenko Dmitriy, cdn@cpan.org
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2021 by Dmitriy
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.26.1 or,
at your option, any later version of Perl 5 you may have available.
=cut
( run in 0.455 second using v1.01-cache-2.11-cpan-71847e10f99 )