NAME Parallel::Map - Multi processing parallel map code SYNOPSIS use Parallel::Map; pmap_void { sleep 1; warn "${_}\n"; Future->done; } foreach => \@choices, forks => 5; DESCRIPTION All subroutines match Future::Utils "fmap_" subroutines of the same name. pmap_void pmap_void { } foreach => \@input; pmap_void { } generate => sub { } pmap_scalar pmap_scalar { } foreach => \@input; pmap_scalar { } generate => sub { } pmap_concat pmap_concat { } foreach => \@input; pmap_concat { } generate => sub { } AUTHOR mst - Matt S. Trout (cpan:MSTROUT) CONTRIBUTORS None yet - maybe this software is perfect! (ahahahahahahahahaha) COPYRIGHT Copyright (c) 2020 the Parallel::Map "AUTHOR" and "CONTRIBUTORS" as listed above. LICENSE This library is free software and may be distributed under the same terms as perl itself.