Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 951 - 960 of 1,302 for label:perl (0.14 sec)

  1. perlhist.txt

    =encoding utf8 =head1 NAME perlhist - the Perl history records =head1 DESCRIPTION This document aims to record the Perl source code releases. =head1 INTRODUCTION Perl history in brief, by Larry Wal...
    perldoc.perl.org/perlhist.txt
    Registered: Tue Nov 26 14:02:21 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. 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.txt
    Registered: Tue Nov 26 13:30:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. 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.txt
    Registered: Tue Nov 26 17:27:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. 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.txt
    Registered: Tue Nov 26 17:07:23 UTC 2024
    - 476 bytes
    - Viewed (0)
  5. 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 163
    perldoc.perl.org/functions/closedir.txt
    Registered: Tue Nov 26 18:08:59 UTC 2024
    - 163 bytes
    - Viewed (0)
  6. 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.txt
    Registered: Tue Nov 26 19:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. 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.txt
    Registered: Tue Nov 26 20:21:15 UTC 2024
    - 785 bytes
    - Viewed (0)
  8. 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.txt
    Registered: Tue Nov 26 21:05:52 UTC 2024
    - 902 bytes
    - Viewed (0)
  9. 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.txt
    Registered: Fri Nov 15 23:59:18 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  10. 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.txt
    Registered: Fri Nov 15 23:12:41 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top