- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 941 - 950 of 1,302 for label:perl (0.05 sec)
-
UNIVERSAL.txt
package UNIVERSAL; our $VERSION = '1.17'; # UNIVERSAL.pm should not contain any methods/subs, they # are all defined in universal.c 1; __END__ =head1 NAME UNIVERSAL - base class for ALL classes (bl...perldoc.perl.org/UNIVERSAL.txtRegistered: Mon Nov 18 19:19:31 UTC 2024 - 6.3K bytes - Viewed (0) -
autodie::Scope::GuardStack.txt
package autodie::Scope::GuardStack; use strict; use warnings; use autodie::Scope::Guard; # ABSTRACT: Hook stack for managing scopes via %^H our $VERSION = '2.37'; # VERSION my $H_KEY_STEM = __PACKA...perldoc.perl.org/autodie::Scope::GuardStack.txtRegistered: Mon Nov 18 19:00:28 UTC 2024 - 3.3K bytes - Viewed (0) -
Win32CORE.txt
package Win32CORE; $VERSION = '0.04'; # There is no reason to load this module explicitly. It will be # initialized using xs_init() when the interpreter is constructed. 1; __END__ =head1 NAME Win32...perldoc.perl.org/Win32CORE.txtRegistered: Mon Nov 18 19:42:03 UTC 2024 - 1.3K bytes - Viewed (0) -
Time::tm.txt
package Time::tm 1.01; use v5.38; use Class::Struct qw(struct); struct('Time::tm' => [ map { $_ => '$' } qw{ sec min hour mday mon year wday yday isdst } ]); __END__ =head1 NAME Time::tm - internal...perldoc.perl.org/Time::tm.txtRegistered: Mon Nov 18 20:26:51 UTC 2024 - 668 bytes - Viewed (0) -
perl5182delta.txt
=encoding utf8 =head1 NAME perl5182delta - what is new for perl v5.18.2 =head1 DESCRIPTION This document describes differences between the 5.18.1 release and the 5.18.2 release. If you are upgradin...perldoc.perl.org/perl5182delta.txtRegistered: Wed Nov 20 09:47:59 UTC 2024 - 5.2K bytes - Viewed (0) -
perlfreebsd.txt
# vim: syntax=pod If you read this file _as_is_, just ignore the funny characters you see. It is written in the POD format (see pod/perlpod.pod) which is specifically designed to be readable as is....perldoc.perl.org/perlfreebsd.txtRegistered: Wed Nov 20 10:20:46 UTC 2024 - 1.6K bytes - Viewed (0) -
reverse.txt
=over =item reverse LIST X<reverse> X<rev> X<invert> In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of ...perldoc.perl.org/functions/reverse.txtRegistered: Wed Nov 20 19:08:13 UTC 2024 - 1.2K bytes - Viewed (0) -
index.txt
=over =item index STR,SUBSTR,POSITION X<index> X<indexOf> X<InStr> =item index STR,SUBSTR The index function searches for one string within another, but without the wildcard-like behavior of a full...perldoc.perl.org/functions/index.txtRegistered: Wed Nov 20 18:34:16 UTC 2024 - 1K bytes - Viewed (0) -
pop.txt
=over =item pop ARRAY X<pop> X<stack> =item pop Removes and returns the B<last> element of the array, shortening the array by one element. my @arr = ('cat', 'dog', 'mouse'); my $item = pop(@arr); #...perldoc.perl.org/functions/pop.txtRegistered: Wed Nov 20 21:03:12 UTC 2024 - 902 bytes - Viewed (0) -
chop.txt
=over =item chop VARIABLE X<chop> =item chop( LIST ) =item chop Chops off the last character of a string and returns the character chopped. It is much more efficient than C<s/.$//s> because it neit...perldoc.perl.org/functions/chop.txtRegistered: Wed Nov 20 11:48:37 UTC 2024 - 785 bytes - Viewed (0)