How to Install and Uninstall perl-Data-Tumbler.noarch Package on Fedora 34

Last updated: September 20,2024

1. Install "perl-Data-Tumbler.noarch" package

Please follow the instructions below to install perl-Data-Tumbler.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Data-Tumbler.noarch

2. Uninstall "perl-Data-Tumbler.noarch" package

Please follow the instructions below to uninstall perl-Data-Tumbler.noarch on Fedora 34:

$ sudo dnf remove perl-Data-Tumbler.noarch $ sudo dnf autoremove

3. Information about the perl-Data-Tumbler.noarch package on Fedora 34

Last metadata expiration check: 2:28:26 ago on Tue Sep 6 14:10:38 2022.
Available Packages
Name : perl-Data-Tumbler
Version : 0.010
Release : 19.fc34
Architecture : noarch
Size : 24 k
Source : perl-Data-Tumbler-0.010-19.fc34.src.rpm
Repository : fedora
Summary : Dynamic generation of nested combinations
URL : https://metacpan.org/release/Data-Tumbler
License : GPL+ or Artistic
Description : The tumble() method calls a sequence of 'provider' code references, each of
: which returns a hash. The first provider is called and then, for each hash item
: it returns, the tumble() method recurses to call the next provider. The
: recursion continues until there are no more providers to call, at which point
: the consumer code reference is called. Effectively the providers create a tree
: of combinations and the consumer is called at the leaves of the tree. If a
: provider returns no items then that part of the tree is pruned. Further
: providers, if any, are not called and the consumer is not called.
:
: During a call to tumble() three values are passed down through the tree and
: into the consumer: path, context, and payload. The path and context are derived
: from the names and values of the hashes returned by the providers. Typically
: the path defines the current "path" through the tree of combinations. The
: providers are passed the current path, context, and payload. The payload is
: cloned at each level of recursion so that any changes made to it by providers
: are only visible within the scope of the generated sub-tree.