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

Search results for "dist:perl"

B - The Perl Compiler Backend River stage five • 11292 direct dependents • 32664 total dependents

The "B" module supplies classes which allow a Perl program to delve into its own innards. It is the module used to implement the "backends" of the Perl compiler. Usage of the compiler does not require knowledge of this module: see the O module for th...

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

O - Generic interface to Perl Compiler backends River stage five • 11292 direct dependents • 32664 total dependents

This is the module that is used as a frontend to the Perl Compiler. If you pass the "-q" option to the module, then the STDOUT filehandle will be redirected into the variable $O::BEGIN_output during compilation. This has the effect that any output pr...

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

B - The Perl Compiler Backend River stage five • 11292 direct dependents • 32664 total dependents

The "B" module supplies classes which allow a Perl program to delve into its own innards. It is the module used to implement the "backends" of the Perl compiler. Usage of the compiler does not require knowledge of this module: see the O module for th...

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

O - Generic interface to Perl Compiler backends River stage five • 11292 direct dependents • 32664 total dependents

This is the module that is used as a frontend to the Perl Compiler. If you pass the "-q" option to the module, then the STDOUT filehandle will be redirected into the variable $O::BEGIN_output during compilation. This has the effect that any output pr...

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

re - Perl pragma to alter regular expression behaviour River stage five • 11292 direct dependents • 32664 total dependents

'taint' mode When "use re 'taint'" is in effect, and a tainted string is the target of a regexp, the regexp memories (or values returned by the m// operator in list context) are tainted. This feature is useful when regexp operations on tainted data a...

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...

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

re - Perl pragma to alter regular expression behaviour River stage five • 11292 direct dependents • 32664 total dependents

'taint' mode When "use re 'taint'" is in effect, and a tainted string is the target of a regexp, the regexp memories (or values returned by the m// operator in list context) are tainted. This feature is useful when regexp operations on tainted data a...

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

ops - Perl pragma to restrict unsafe operations when compiling River stage five • 11292 direct dependents • 32664 total dependents

Since the "ops" pragma currently has an irreversible global effect, it is only of significant practical use with the "-M" option on the command line. See the Opcode module for information about opcodes, optags, opmasks and important information about...

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

ops - Perl pragma to restrict unsafe operations when compiling River stage five • 11292 direct dependents • 32664 total dependents

Since the "ops" pragma currently has an irreversible global effect, it is only of significant practical use with the "-M" option on the command line. See the Opcode module for information about opcodes, optags, opmasks and important information about...

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

subs - Perl pragma to predeclare subroutine names River stage five • 11292 direct dependents • 32664 total dependents

This will predeclare all the subroutines whose names are in the list, allowing you to use them without parentheses (as list operators) even before they're declared. Unlike pragmas that affect the $^H hints variable, the "use vars" and "use subs" decl...

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

blib - Use MakeMaker's uninstalled version of a package River stage five • 11292 direct dependents • 32664 total dependents

Looks for MakeMaker-like *'blib'* directory structure starting in *dir* (or current directory) and working back up to five levels of '..'. Intended for use on command line with -M option as a way of testing arbitrary scripts against an uninstalled ve...

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

sort - perl pragma to control sort() behaviour River stage five • 11292 direct dependents • 32664 total dependents

Historically the "sort" pragma you can control the behaviour of the builtin "sort()" function. Prior to v5.28.0 there were two other options: use sort '_mergesort'; use sort '_qsort'; # or '_quicksort' If you try and specify either of these in v5.28+...

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

utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code River stage five • 11292 direct dependents • 32664 total dependents

The "use utf8" pragma tells the Perl parser to allow UTF-8 in the program text in the current lexical scope. The "no utf8" pragma tells Perl to switch back to treating the source text as literal bytes in the current lexical scope. (On EBCDIC platform...

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

open - perl pragma to set default PerlIO layers for input and output River stage five • 11292 direct dependents • 32664 total dependents

Full-fledged support for I/O layers is now implemented provided Perl is configured to use PerlIO as its IO system (which has been the default since 5.8, and the only supported configuration since 5.16). The "open" pragma serves as one of the interfac...

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

todo - Perl TO-DO list River stage five • 11292 direct dependents • 32664 total dependents

This is a list of wishes for Perl. The most up to date version of this file is at <https://github.com/Perl/perl5/blob/blead/Porting/todo.pod>. The tasks we think are smaller or easier are listed first. Anyone is welcome to work on any of these, but i...

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

less - perl pragma to request less of something River stage five • 11292 direct dependents • 32664 total dependents

This is a user-pragma. If you're very lucky some code you're using will know that you asked for less CPU usage or ram or fat or... we just can't know. Consult your documentation on everything you're currently using. For general suggestions, try reque...

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

vars - Perl pragma to predeclare global variable names River stage five • 11292 direct dependents • 32664 total dependents

NOTE: For use with variables in the current package for a single scope, the functionality provided by this pragma has been superseded by "our" declarations, available in Perl v5.6.0 or later, and use of this pragma is discouraged. See "our" in perlfu...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC
667 results (0.027 seconds)