- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 821 - 830 of 2,121 for filetype:txt (0.04 sec)
-
perlnewmod.txt
=head1 NAME perlnewmod - preparing a new module for distribution =head1 DESCRIPTION This document gives you some suggestions about how to go about writing Perl modules, preparing them for distribut...perldoc.perl.org/perlnewmod.txtRegistered: Fri Nov 01 21:23:28 UTC 2024 - 10.7K bytes - Viewed (0) -
perllol.txt
=head1 NAME perllol - Manipulating Arrays of Arrays in Perl =head1 DESCRIPTION =head2 Declaration and Access of Arrays of Arrays The simplest two-level data structure to build in Perl is an array o...perldoc.perl.org/perllol.txtRegistered: Fri Nov 01 20:55:44 UTC 2024 - 9.1K bytes - Viewed (0) -
open.txt
package open; use warnings; our $VERSION = '1.13'; require 5.008001; # for PerlIO::get_layers() my $locale_encoding; sub _get_encname { return ($1, Encode::resolve_alias($1)) if $_[0] =~ /^:?encodi...perldoc.perl.org/open.txtRegistered: Fri Nov 01 19:48:50 UTC 2024 - 8.3K bytes - Viewed (0) -
$a.txt
=over =item $a =item $b X<$a> X<$b> Special package variables when using C<sort()>, see L<perlfunc/sort>. Because of this specialness C<$a> and C<$b> don't need to be declared (using C<use vars>, o...perldoc.perl.org/variables/$a.txt Similar Results (1)Registered: Fri Nov 01 22:12:00 UTC 2024 - 394 bytes - Viewed (0) -
version.txt
=head1 NAME version - Perl extension for Version Objects =head1 SYNOPSIS # Parsing version strings (decimal or dotted-decimal) use version 0.77; # get latest bug-fixes and API $ver = version->parse...perldoc.perl.org/version.txtRegistered: Sat Nov 02 01:56:37 UTC 2024 - 9.6K bytes - Viewed (0) -
$!.txt
=over =item $OS_ERROR =item $ERRNO =item $! X<$!> X<$ERRNO> X<$OS_ERROR> When referenced, C<$!> retrieves the current value of the C C<errno> integer variable. If C<$!> is assigned a numerical valu...perldoc.perl.org/variables/$!.txtRegistered: Sat Nov 02 02:14:34 UTC 2024 - 1.4K bytes - Viewed (0) -
${^LAST_FH}.txt
=over =item ${^LAST_FH} X<${^LAST_FH}> This read-only variable contains a reference to the last-read filehandle. This is set by C<< <HANDLE> >>, C<readline>, C<tell>, C<eof> and C<seek>. This is th...perldoc.perl.org/variables/${^LAST_FH}.txtRegistered: Sat Nov 02 02:35:44 UTC 2024 - 415 bytes - Viewed (0) -
${^LAST_SUCCESSFUL_PATTERN}.txt
=over =item ${^LAST_SUCCESSFUL_PATTERN} The last successful pattern that matched in the current scope. The empty pattern defaults to matching to this. For instance: if (m/foo/ || m/bar/) { s//BLAH/...perldoc.perl.org/variables/${^LAST_SUCCESSFUL_PATTERN}.txtRegistered: Sat Nov 02 03:26:26 UTC 2024 - 435 bytes - Viewed (0) -
%SIG.txt
=over =item %SIG X<%SIG> The hash C<%SIG> contains signal handlers for signals. For example: sub handler { # 1st argument is signal name my($sig) = @_; print "Caught a SIG$sig--shutting down\n"; cl...perldoc.perl.org/variables/%SIG.txtRegistered: Sat Nov 02 03:38:45 UTC 2024 - 4.6K bytes - Viewed (0) -
@ .txt
=over =item @LAST_MATCH_END =item @+ X<@+> X<@LAST_MATCH_END> This array holds the offsets of the ends of the last successful match and any matching capture buffers that the pattern contains. (See ...perldoc.perl.org/variables/@ .txtRegistered: Sat Nov 02 04:11:43 UTC 2024 - 1.1K bytes - Viewed (0)