How to Install and Uninstall perl-MooseX-GlobRef Package on openSuSE Tumbleweed

Last updated: May 18,2024

1. Install "perl-MooseX-GlobRef" package

Learn how to install perl-MooseX-GlobRef on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-MooseX-GlobRef

2. Uninstall "perl-MooseX-GlobRef" package

Please follow the step by step instructions below to uninstall perl-MooseX-GlobRef on openSuSE Tumbleweed:

$ sudo zypper remove perl-MooseX-GlobRef

3. Information about the perl-MooseX-GlobRef package on openSuSE Tumbleweed

Information for package perl-MooseX-GlobRef:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-MooseX-GlobRef
Version : 0.0701-9.30
Arch : noarch
Vendor : openSUSE
Installed Size : 44.5 KiB
Installed : No
Status : not installed
Source package : perl-MooseX-GlobRef-0.0701-9.30.src
Upstream URL : http://search.cpan.org/dist/MooseX-GlobRef/
Summary : Store a Moose object in glob reference
Description :
This module allows to store Moose object in glob reference of file handle.
The class attributes will be stored in hash slot associated with glob
reference. It allows to create a Moose version of the IO::Handle manpage.
The attributes can be accessed directly with following expression:
my $hashref = \%{*$self};
print $hashref->{key};
or shorter:
print *$self->{key};
but the standard accessors should be used instead:
print $self->key;