The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:perl untie()"

Opcode - Disable named opcodes when compiling perl code River stage five • 11693 direct dependents • 33184 total dependents

Perl code is always compiled into an internal format before execution. Evaluating perl code (e.g. via "eval" or "do 'file'") causes the code to be compiled into an internal format and then, provided there was no error in the compilation, executed. Th...

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

Opcode - Disable named opcodes when compiling perl code River stage five • 11693 direct dependents • 33184 total dependents

Perl code is always compiled into an internal format before execution. Evaluating perl code (e.g. via "eval" or "do 'file'") causes the code to be compiled into an internal format and then, provided there was no error in the compilation, executed. Th...

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

warnings - Perl pragma to control optional warnings River stage five • 11693 direct dependents • 33184 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 • 11693 direct dependents • 33184 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

perltie - how to hide an object class in a simple variable River stage five • 11693 direct dependents • 33184 total dependents

Prior to release 5.0 of Perl, a programmer could use dbmopen() to connect an on-disk database in the standard Unix dbm(3x) format magically to a %HASH in their program. However, their Perl was either built with one particular dbm library or another, ...

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

perltie - how to hide an object class in a simple variable River stage five • 11693 direct dependents • 33184 total dependents

Prior to release 5.0 of Perl, a programmer could use dbmopen() to connect an on-disk database in the standard Unix dbm(3x) format magically to a %HASH in their program. However, their Perl was either built with one particular dbm library or another, ...

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

perlsub - Perl subroutines River stage five • 11693 direct dependents • 33184 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 • 11693 direct dependents • 33184 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

perlvms - VMS-specific documentation for Perl River stage five • 11693 direct dependents • 33184 total dependents

Gathered below are notes describing details of Perl 5's behavior on VMS. They are a supplement to the regular Perl 5 documentation, so we have focussed on the ways in which Perl 5 functions differently under VMS than it does under Unix, and on the in...

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

perlvms - VMS-specific documentation for Perl River stage five • 11693 direct dependents • 33184 total dependents

Gathered below are notes describing details of Perl 5's behavior on VMS. They are a supplement to the regular Perl 5 documentation, so we have focussed on the ways in which Perl 5 functions differently under VMS than it does under Unix, and on the in...

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

perldiag - various Perl diagnostics River stage five • 11693 direct dependents • 33184 total dependents

These messages are classified as follows (listed in increasing order of desperation): (W) A warning (optional). (D) A deprecation (enabled by default). (S) A severe warning (enabled by default). (F) A fatal error (trappable). (P) An internal error yo...

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

perldiag - various Perl diagnostics River stage five • 11693 direct dependents • 33184 total dependents

These messages are classified as follows (listed in increasing order of desperation): (W) A warning (optional). (D) A deprecation (enabled by default). (S) A severe warning (enabled by default). (F) A fatal error (trappable). (P) An internal error yo...

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

perlport - Writing portable Perl River stage five • 11693 direct dependents • 33184 total dependents

Perl runs on numerous operating systems. While most of them share much in common, they also have their own unique features. This document is meant to help you to find out what constitutes portable Perl code. That way once you make a decision to write...

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

perlport - Writing portable Perl River stage five • 11693 direct dependents • 33184 total dependents

Perl runs on numerous operating systems. While most of them share much in common, they also have their own unique features. This document is meant to help you to find out what constitutes portable Perl code. That way once you make a decision to write...

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

perlfunc - Perl builtin functions River stage five • 11693 direct dependents • 33184 total dependents

The functions in this section can serve as terms in an expression. They fall into two major categories: list operators and named unary operators. These differ in their precedence relationship with a following comma. (See the precedence table in perlo...

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

perlfunc - Perl builtin functions River stage five • 11693 direct dependents • 33184 total dependents

The functions in this section can serve as terms in an expression. They fall into two major categories: list operators and named unary operators. These differ in their precedence relationship with a following comma. (See the precedence table in perlo...

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

warnings - Perl pragma to control optional warnings River stage five • 11693 direct dependents • 33184 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

warnings - Perl pragma to control optional warnings River stage five • 11693 direct dependents • 33184 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

perldelta - what is new for perl v5.36.0 River stage five • 11693 direct dependents • 33184 total dependents

This document describes differences between the 5.34.0 release and the 5.36.0 release....

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

GDBM_File - Perl5 access to the gdbm library. River stage five • 11693 direct dependents • 33184 total dependents

GDBM_File is a module which allows Perl programs to make use of the facilities provided by the GNU gdbm library. If you intend to use this module you should really have a copy of the GDBM manual at hand. The manual is avaialble online at <https://www...

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