How to Install and Uninstall perl-autovivification Package on openSuSE Tumbleweed

Last updated: May 19,2024

1. Install "perl-autovivification" package

Please follow the guidance below to install perl-autovivification on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-autovivification

2. Uninstall "perl-autovivification" package

Learn how to uninstall perl-autovivification on openSuSE Tumbleweed:

$ sudo zypper remove perl-autovivification

3. Information about the perl-autovivification package on openSuSE Tumbleweed

Information for package perl-autovivification:
----------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-autovivification
Version : 0.18-1.36
Arch : x86_64
Vendor : openSUSE
Installed Size : 64.5 KiB
Installed : No
Status : not installed
Source package : perl-autovivification-0.18-1.36.src
Upstream URL : http://search.cpan.org/dist/autovivification/
Summary : Lexically disable autovivification
Description :
When an undefined variable is dereferenced, it gets silently upgraded to an
array or hash reference (depending of the type of the dereferencing). This
behaviour is called _autovivification_ and usually does what you mean (e.g.
when you store a value) but it may be unnatural or surprising because your
variables gets populated behind your back. This is especially true when
several levels of dereferencing are involved, in which case all levels are
vivified up to the last, or when it happens in intuitively read-only
constructs like 'exists'.
This pragma lets you disable autovivification for some constructs and
optionally throws a warning or an error when it would have happened.