How to Install and Uninstall perl-Parallel-Iterator.noarch Package on Fedora 38

Last updated: October 30,2024

1. Install "perl-Parallel-Iterator.noarch" package

This guide let you learn how to install perl-Parallel-Iterator.noarch on Fedora 38

$ sudo dnf update $ sudo dnf install perl-Parallel-Iterator.noarch

2. Uninstall "perl-Parallel-Iterator.noarch" package

This guide covers the steps necessary to uninstall perl-Parallel-Iterator.noarch on Fedora 38:

$ sudo dnf remove perl-Parallel-Iterator.noarch $ sudo dnf autoremove

3. Information about the perl-Parallel-Iterator.noarch package on Fedora 38

Last metadata expiration check: 2:19:04 ago on Sun Mar 17 04:59:58 2024.
Available Packages
Name : perl-Parallel-Iterator
Version : 1.002
Release : 2.fc38
Architecture : noarch
Size : 31 k
Source : perl-Parallel-Iterator-1.002-2.fc38.src.rpm
Repository : fedora
Summary : Simple parallel execution
URL : https://metacpan.org/release/Parallel-Iterator
License : GPL-1.0-or-later OR Artistic-1.0-Perl
Description : The map function applies a user supplied transformation function to
: each element in a list, returning a new list containing the
: transformed elements.
:
: This module provides a 'parallel map'. Multiple worker processes are forked so
: that many instances of the transformation function may be executed
: simultaneously.
:
: For time consuming operations, particularly operations that spend most of their
: time waiting for I/O, this is a big performance win. It also provides a simple
: idiom to make effective use of multi CPU systems.