How To Install perl-Hash-StoredIterator on CentOS 7

In this tutorial we learn how to install perl-Hash-StoredIterator on CentOS 7. perl-Hash-StoredIterator is Functions for accessing a hash’s internal iterator

Introduction

In this tutorial we learn how to install perl-Hash-StoredIterator on CentOS 7.

What is perl-Hash-StoredIterator

In perl all hashes have an internal iterator. This iterator is used by the each() function, as well as by keys() and values(). Because these all share use of the same iterator, they tend to interact badly with each other when nested. Hash iterator inside a hash. This allows you to store the current iterator, use each / keys / values etc., and then restore the iterator, which helps you to ensure you do not interact badly with other users of the iterator. Along with low-level get / set / init functions, there are also 2 variations of each() that let you act upon each key/value pair in a safer way than vanilla each(). This module can also export new implementations of keys() and values() that stash and restore the iterator so that they are safe to use within each().

We can use yum or dnf to install perl-Hash-StoredIterator on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Hash-StoredIterator.

Install perl-Hash-StoredIterator on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install perl-Hash-StoredIterator using yum by running the following command:

sudo yum -y install perl-Hash-StoredIterator

Install perl-Hash-StoredIterator on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install perl-Hash-StoredIterator using dnf by running the following command:

sudo dnf -y install perl-Hash-StoredIterator

How To Uninstall perl-Hash-StoredIterator on CentOS 7

To uninstall only the perl-Hash-StoredIterator package we can use the following command:

sudo dnf remove perl-Hash-StoredIterator

References

Summary

In this tutorial we learn how to install perl-Hash-StoredIterator on CentOS 7 using yum and dnf.