- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 951 - 960 of 1,302 for label:perl (0.08 sec)
-
perlutil.txt
=head1 NAME perlutil - utilities packaged with the Perl distribution =head1 DESCRIPTION Along with the Perl interpreter itself, the Perl distribution installs a range of utilities on your system. T...perldoc.perl.org/perlutil.txtRegistered: Tue Nov 26 13:30:57 UTC 2024 - 7.2K bytes - Viewed (0) -
keys.txt
=over =item keys HASH X<keys> X<key> =item keys ARRAY Called in list context, returns a list consisting of all the keys of the named hash, or in Perl 5.12 or later only, the indices of an array. Pe...perldoc.perl.org/functions/keys.txtRegistered: Tue Nov 26 17:27:50 UTC 2024 - 3.7K bytes - Viewed (0) -
study.txt
=over =item study SCALAR X<study> =item study At this time, C<study> does nothing. This may change in the future. Prior to Perl version 5.16, it would create an inverted index of all characters tha...perldoc.perl.org/functions/study.txtRegistered: Tue Nov 26 17:07:23 UTC 2024 - 476 bytes - Viewed (0) -
closedir.txt
=over =item closedir DIRHANDLE X<closedir> Closes a directory opened by L<C<opendir>|/opendir DIRHANDLE,EXPR> and returns the success of that system call. =back 163perldoc.perl.org/functions/closedir.txtRegistered: Tue Nov 26 18:08:59 UTC 2024 - 163 bytes - Viewed (0) -
values.txt
=over =item values HASH X<values> =item values ARRAY In list context, returns a list consisting of all the values of the named hash. In Perl 5.12 or later only, will also return a list of the value...perldoc.perl.org/functions/values.txtRegistered: Tue Nov 26 19:04:33 UTC 2024 - 2.6K 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: Tue Nov 26 20:21:15 UTC 2024 - 785 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: Tue Nov 26 21:05:52 UTC 2024 - 902 bytes - Viewed (0) -
unshift.txt
=over =item unshift ARRAY,LIST X<unshift> Add one or more elements to the B<beginning> of an array. This is the opposite of a L<C<shift>|/shift ARRAY>. my @animals = ("cat"); unshift(@animals, "mou...perldoc.perl.org/functions/unshift.txtRegistered: Tue Nov 26 22:18:00 UTC 2024 - 945 bytes - Viewed (0) -
Socket.txt
package Socket; use v5.6.1; use strict; our $VERSION = '2.038'; =head1 NAME C<Socket> - networking constants and support functions =head1 SYNOPSIS C<Socket> a low-level module used by, among other ...perldoc.perl.org/Socket.txtRegistered: Fri Nov 15 23:59:18 UTC 2024 - 37.6K bytes - Viewed (0) -
Benchmark.txt
package Benchmark; use strict; =head1 NAME Benchmark - benchmark running times of Perl code =head1 SYNOPSIS use Benchmark qw(:all) ; timethis ($count, "code"); # Use Perl code in strings... timethe...perldoc.perl.org/Benchmark.txtRegistered: Fri Nov 15 23:12:41 UTC 2024 - 30.3K bytes - Viewed (0)