The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "distribution:perl Class::ISA"

Class::Struct - declare struct-like datatypes as Perl classes River stage five • 11292 direct dependents • 32664 total dependents

"Class::Struct" exports a single function, "struct". Given a list of element names and types, and optionally a class name, "struct" creates a Perl 5 class that implements a "struct-like" data structure. The new class is given a constructor method, "n...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

Class::Struct - declare struct-like datatypes as Perl classes River stage five • 11292 direct dependents • 32664 total dependents

"Class::Struct" exports a single function, "struct". Given a list of element names and types, and optionally a class name, "struct" creates a Perl 5 class that implements a "struct-like" data structure. The new class is given a constructor method, "n...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

DB - programmatic interface to the Perl debugging API River stage five • 11292 direct dependents • 32664 total dependents

Perl debug information is frequently required not just by debuggers, but also by modules that need some "special" information to do their job properly, like profilers. This module abstracts and provides all of the hooks into Perl internal debugging f...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

DB - programmatic interface to the Perl debugging API River stage five • 11292 direct dependents • 32664 total dependents

Perl debug information is frequently required not just by debuggers, but also by modules that need some "special" information to do their job properly, like profilers. This module abstracts and provides all of the hooks into Perl internal debugging f...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

mro - Method Resolution Order River stage five • 11292 direct dependents • 32664 total dependents

The "mro" namespace provides several utilities for dealing with method resolution order and method caching in general. These interfaces are only available in Perl 5.9.5 and higher. See MRO::Compat on CPAN for a mostly forwards compatible implementati...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

mro - Method Resolution Order River stage five • 11292 direct dependents • 32664 total dependents

The "mro" namespace provides several utilities for dealing with method resolution order and method caching in general. These interfaces are only available in Perl 5.9.5 and higher. See MRO::Compat on CPAN for a mostly forwards compatible implementati...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

feature - Perl pragma to enable new features River stage five • 11292 direct dependents • 32664 total dependents

It is usually impossible to add new syntax to Perl without breaking some existing programs. This pragma provides a way to minimize that risk. New syntactic constructs, or new semantic meanings to older constructs, can be enabled by "use feature 'foo'...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

feature - Perl pragma to enable new features River stage five • 11292 direct dependents • 32664 total dependents

It is usually impossible to add new syntax to Perl without breaking some existing programs. This pragma provides a way to minimize that risk. New syntactic constructs, or new semantic meanings to older constructs, can be enabled by "use feature 'foo'...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlop - Perl operators and precedence River stage five • 11292 direct dependents • 32664 total dependents

In Perl, the operator determines what operation is performed, independent of the type of the operands. For example "$x + $y" is always a numeric addition, and if $x or $y do not contain numbers, an attempt is made to convert them to numbers first. Th...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlop - Perl operators and precedence River stage five • 11292 direct dependents • 32664 total dependents

In Perl, the operator determines what operation is performed, independent of the type of the operands. For example "$x + $y" is always a numeric addition, and if $x or $y do not contain numbers, an attempt is made to convert them to numbers first. Th...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlclass - Perl class syntax reference River stage five • 11292 direct dependents • 32664 total dependents

This document describes the syntax of the Perl's "class" feature, which provides native keywords supporting object-oriented programming paradigm. History Since Perl 5, support for objects revolved around the concept of *blessing* references with a pa...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

warnings - Perl pragma to control optional warnings River stage five • 11292 direct dependents • 32664 total dependents

The "warnings" pragma gives control over which warnings are enabled in which parts of a Perl program. It's a more flexible alternative for both the command line flag -w and the equivalent Perl variable, $^W. This pragma works just like the "strict" p...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

warnings - Perl pragma to control optional warnings River stage five • 11292 direct dependents • 32664 total dependents

The "warnings" pragma gives control over which warnings are enabled in which parts of a Perl program. It's a more flexible alternative for both the command line flag -w and the equivalent Perl variable, $^W. This pragma works just like the "strict" p...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

UNIVERSAL - base class for ALL classes (blessed references) River stage five • 11292 direct dependents • 32664 total dependents

"UNIVERSAL" is the base class from which all blessed references inherit. See perlobj. "UNIVERSAL" provides the following methods: "$obj->isa( TYPE )" "CLASS->isa( TYPE )" "eval { VAL->isa( TYPE ) }" Where "TYPE" is a package name $obj is a blessed re...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

UNIVERSAL - base class for ALL classes (blessed references) River stage five • 11292 direct dependents • 32664 total dependents

"UNIVERSAL" is the base class from which all blessed references inherit. See perlobj. "UNIVERSAL" provides the following methods: "$obj->isa( TYPE )" "CLASS->isa( TYPE )" "eval { VAL->isa( TYPE ) }" Where "TYPE" is a package name $obj is a blessed re...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlsub - Perl subroutines River stage five • 11292 direct dependents • 32664 total dependents

Like many languages, Perl provides for user-defined subroutines. These may be located anywhere in the main program, loaded in from other files via the "do", "require", or "use" keywords, or generated on the fly using "eval" or anonymous subroutines. ...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlsub - Perl subroutines River stage five • 11292 direct dependents • 32664 total dependents

Like many languages, Perl provides for user-defined subroutines. These may be located anywhere in the main program, loaded in from other files via the "do", "require", or "use" keywords, or generated on the fly using "eval" or anonymous subroutines. ...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

perlvar - Perl predefined variables River stage five • 11292 direct dependents • 32664 total dependents

The Syntax of Variable Names Variable names in Perl can have several formats. Usually, they must begin with a letter or underscore, in which case they can be arbitrarily long (up to an internal limit of 251 characters) and may contain letters, digits...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

perlvar - Perl predefined variables River stage five • 11292 direct dependents • 32664 total dependents

The Syntax of Variable Names Variable names in Perl can have several formats. Usually, they must begin with a letter or underscore, in which case they can be arbitrarily long (up to an internal limit of 251 characters) and may contain letters, digits...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

feature - Perl pragma to enable new features River stage five • 11292 direct dependents • 32664 total dependents

It is usually impossible to add new syntax to Perl without breaking some existing programs. This pragma provides a way to minimize that risk. New syntactic constructs, or new semantic meanings to older constructs, can be enabled by "use feature 'foo'...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
103 results (0.056 seconds)