Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help

The search service can find package by either name (apache), provides(webserver), absolute file names (/usr/bin/apache), binaries (gprof) or shared libraries (libXm.so.2) in standard path. It does not support multiple arguments yet...

The System and Arch are optional added filters, for example System could be "redhat", "redhat-7.2", "mandrake" or "gnome", Arch could be "i386" or "src", etc. depending on your system.

System Arch

RPM resource perl-Safe-Isa

How many times have you found yourself writing: if ($obj->isa('Something')) { and then shortly afterwards cursing and changing it to: if (Scalar::Util::blessed($obj) and $obj->isa('Something')) { Right. That's why this module exists. Since perl allows us to provide a subroutine reference or a method name to the -> operator when used as a method call, and a subroutine doesn't require the invocant to actually be an object, we can create safe versions of isa, can and friends by using a subroutine reference that only tries to call the method if it's used on an object. So: my $isa_Foo = $maybe_an_object->$_call_if_object(isa => 'Foo'); is equivalent to my $isa_Foo = do { if (Scalar::Util::blessed($maybe_an_object)) { $maybe_an_object->isa('Foo'); } else { undef; } }; Note that we don't handle trying class names, because many things are valid class names that you might not want to treat as one (like say "Matt") - the 'is_module_name' function from Module::Runtime is a good way to check for something you might be able to call methods on if you want to do that. We are careful to make sure that scalar/list context is preserved for the method that is eventually called.

Found 3 sites for perl-Safe-Isa

Found 52 RPM for perl-Safe-Isa

PackageSummaryDistributionDownload
perl-Safe-Isa-1.000010-19.fc40.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora Rawhide for x86_64perl-Safe-Isa-1.000010-19.fc40.noarch.rpm
perl-Safe-Isa-1.000010-19.fc40.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora Rawhide for aarch64perl-Safe-Isa-1.000010-19.fc40.noarch.rpm
perl-Safe-Isa-1.000010-19.fc40.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora Rawhide for ppc64leperl-Safe-Isa-1.000010-19.fc40.noarch.rpm
perl-Safe-Isa-1.000010-19.fc40.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora Rawhide for s390xperl-Safe-Isa-1.000010-19.fc40.noarch.rpm
perl-Safe-Isa-1.000010-19.fc40.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 40 for x86_64perl-Safe-Isa-1.000010-19.fc40.noarch.rpm
perl-Safe-Isa-1.000010-19.fc40.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 40 for aarch64perl-Safe-Isa-1.000010-19.fc40.noarch.rpm
perl-Safe-Isa-1.000010-19.fc40.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 40 for ppc64leperl-Safe-Isa-1.000010-19.fc40.noarch.rpm
perl-Safe-Isa-1.000010-19.fc40.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 40 for s390xperl-Safe-Isa-1.000010-19.fc40.noarch.rpm
perl-Safe-Isa-1.000010-17.fc39.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 39 for x86_64perl-Safe-Isa-1.000010-17.fc39.noarch.rpm
perl-Safe-Isa-1.000010-17.fc39.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 39 for aarch64perl-Safe-Isa-1.000010-17.fc39.noarch.rpm
perl-Safe-Isa-1.000010-17.fc39.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 39 for ppc64leperl-Safe-Isa-1.000010-17.fc39.noarch.rpm
perl-Safe-Isa-1.000010-17.fc39.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 39 for s390xperl-Safe-Isa-1.000010-17.fc39.noarch.rpm
perl-Safe-Isa-1.000010-16.fc38.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 38 for x86_64perl-Safe-Isa-1.000010-16.fc38.noarch.rpm
perl-Safe-Isa-1.000010-16.fc38.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 38 for aarch64perl-Safe-Isa-1.000010-16.fc38.noarch.rpm
perl-Safe-Isa-1.000010-16.fc38.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 38 for ppc64leperl-Safe-Isa-1.000010-16.fc38.noarch.rpm
perl-Safe-Isa-1.000010-16.fc38.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 38 for s390xperl-Safe-Isa-1.000010-16.fc38.noarch.rpm
perl-Safe-Isa-1.000010-15.fc37.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 37 for x86_64perl-Safe-Isa-1.000010-15.fc37.noarch.rpm
perl-Safe-Isa-1.000010-15.fc37.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 37 for aarch64perl-Safe-Isa-1.000010-15.fc37.noarch.rpm
perl-Safe-Isa-1.000010-15.fc37.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 37 for ppc64leperl-Safe-Isa-1.000010-15.fc37.noarch.rpm
perl-Safe-Isa-1.000010-15.fc37.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsFedora 37 for s390xperl-Safe-Isa-1.000010-15.fc37.noarch.rpm
perl-Safe-Isa-1.000010-1.25.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsOpenSuSE Tumbleweed for noarchperl-Safe-Isa-1.000010-1.25.noarch.rpm
perl-Safe-Isa-1.000010-1.25.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsOpenSuSE Ports Tumbleweed for noarchperl-Safe-Isa-1.000010-1.25.noarch.rpm
Call isa, can, does and DOES safely on things that may not be objectsperl-Safe-Isa-1.000010-1.7.noarch.rpm
perl-Safe-Isa-1.000010-1.el9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 9 for ppc64leperl-Safe-Isa-1.000010-1.el9.noarch.rpm
perl-Safe-Isa-1.000010-1.el9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 9 for x86_64perl-Safe-Isa-1.000010-1.el9.noarch.rpm
perl-Safe-Isa-1.000010-1.el9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 9 for aarch64perl-Safe-Isa-1.000010-1.el9.noarch.rpm
perl-Safe-Isa-1.000010-1.el9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 9 for s390xperl-Safe-Isa-1.000010-1.el9.noarch.rpm
perl-Safe-Isa-1.000010-1.el8.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 8 for ppc64leperl-Safe-Isa-1.000010-1.el8.noarch.rpm
perl-Safe-Isa-1.000010-1.el8.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 8 for aarch64perl-Safe-Isa-1.000010-1.el8.noarch.rpm
perl-Safe-Isa-1.000010-1.el8.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 8 for x86_64perl-Safe-Isa-1.000010-1.el8.noarch.rpm
perl-Safe-Isa-1.000010-1.el8.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 8 for s390xperl-Safe-Isa-1.000010-1.el8.noarch.rpm
perl-Safe-Isa-1.000010-bp156.3.1.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsOpenSuSE Leap 15.6 for noarchperl-Safe-Isa-1.000010-bp156.3.1.noarch.rpm
perl-Safe-Isa-1.000010-bp155.2.12.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsOpenSuSE Leap 15.5 for noarchperl-Safe-Isa-1.000010-bp155.2.12.noarch.rpm
perl-Safe-Isa-1.000010-bp154.1.30.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsOpenSuSE Leap 15.4 for noarchperl-Safe-Isa-1.000010-bp154.1.30.noarch.rpm
perl-Safe-Isa-1.000010-bp153.1.15.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsOpenSuSE Leap 15.3 for noarchperl-Safe-Isa-1.000010-bp153.1.15.noarch.rpm
perl-Safe-Isa-1.000010-lp152.3.2.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsOpenSuSE Leap 15.2 for noarchperl-Safe-Isa-1.000010-lp152.3.2.noarch.rpm
perl-Safe-Isa-1.000005-2.el7.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 7 for ppc64leperl-Safe-Isa-1.000005-2.el7.noarch.rpm
perl-Safe-Isa-1.000005-2.el7.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 7 for aarch64perl-Safe-Isa-1.000005-2.el7.noarch.rpm
perl-Safe-Isa-1.000005-2.el7.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 7 for ppc64perl-Safe-Isa-1.000005-2.el7.noarch.rpm
perl-Safe-Isa-1.000005-2.el7.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsEPEL 7 for x86_64perl-Safe-Isa-1.000005-2.el7.noarch.rpm
perl-Safe-Isa-1.0.10-4.mga9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia Cauldron for armv7hlperl-Safe-Isa-1.0.10-4.mga9.noarch.rpm
perl-Safe-Isa-1.0.10-4.mga9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia Cauldron for x86_64perl-Safe-Isa-1.0.10-4.mga9.noarch.rpm
perl-Safe-Isa-1.0.10-4.mga9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia Cauldron for aarch64perl-Safe-Isa-1.0.10-4.mga9.noarch.rpm
perl-Safe-Isa-1.0.10-4.mga9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia 9 for i586perl-Safe-Isa-1.0.10-4.mga9.noarch.rpm
perl-Safe-Isa-1.0.10-4.mga9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia 9 for armv7hlperl-Safe-Isa-1.0.10-4.mga9.noarch.rpm
perl-Safe-Isa-1.0.10-4.mga9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia 9 for x86_64perl-Safe-Isa-1.0.10-4.mga9.noarch.rpm
perl-Safe-Isa-1.0.10-4.mga9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia 9 for aarch64perl-Safe-Isa-1.0.10-4.mga9.noarch.rpm
perl-Safe-Isa-1.0.10-4.mga9.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia Cauldron for i686perl-Safe-Isa-1.0.10-4.mga9.noarch.rpm
perl-Safe-Isa-1.0.10-3.mga8.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia 8 for aarch64perl-Safe-Isa-1.0.10-3.mga8.noarch.rpm
perl-Safe-Isa-1.0.10-3.mga8.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia 8 for x86_64perl-Safe-Isa-1.0.10-3.mga8.noarch.rpm
perl-Safe-Isa-1.0.10-3.mga8.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia 8 for armv7hlperl-Safe-Isa-1.0.10-3.mga8.noarch.rpm
perl-Safe-Isa-1.0.10-3.mga8.noarch.htmlCall isa, can, does and DOES safely on things that may not be objectsMageia 8 for i586perl-Safe-Isa-1.0.10-3.mga8.noarch.rpm

Generated by rpm2html 1.6

Fabrice Bellet