NAME
Set::Product::XS - speed up Set::Product
SYNOPSIS
use Set::Product qw(product);
product { say "@_" } [1..10], ['A'..'E'], ['u'..'z'];
DESCRIPTION
The Set::Product::XS
module provides a faster XS implementation for Set::Scalar
. It will automatically be used, if available.
FUNCTIONS
product
product { BLOCK } \@array1, \@array2, ...
Evaluates BLOCK
and sets @_ to each tuple in the cartesian product for the list of array references.
PERFORMANCE
This distribution contains a benchmarking script which compares several compression modules available on CPAN. These are the results on a MacBook 2.6GHz Core i5 (64-bit) with Perl 5.22.0:
Set::Crossproduct 45.61+-0.3/s
List::Gen 60.75+-0.51/s
Algorithm::Loops 68.32+-0.56/s
Set::Scalar 100.8+-1.4/s
Math::Cartesian::Product 203.2+-3.4/s
Set::Product::PP 275.4+-1.3/s
Set::Product::XS 724.96+-0.43/s
SEE ALSO
REQUESTS AND BUGS
Please report any bugs or feature requests to http://rt.cpan.org/Public/Bug/Report.html?Queue=Set-Product-XS. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Set::Product::XS
You can also look for information at:
GitHub Source Repository
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
http://rt.cpan.org/Public/Dist/Display.html?Name=Set-Product-XS
Search CPAN
COPYRIGHT AND LICENSE
Copyright (C) 2015 gray <gray at cpan.org>, all rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
gray, <gray at cpan.org>