Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 641 - 650 of 1,306 for label:perl (0.06 sec)

  1. Unicode::Collate::Locale.txt

    package Unicode::Collate::Locale; use strict; use warnings; use Carp; use base qw(Unicode::Collate); our $VERSION = '1.31'; my $PL_EXT = '.pl'; my %LocaleFile = map { ($_, $_) } qw( af ar as az be ...
    perldoc.perl.org/Unicode::Collate::Locale.txt
    Registered: Wed Jun 04 23:03:47 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  2. perlopentut.txt

    =encoding utf8 =head1 NAME perlopentut - simple recipes for opening files and pipes in Perl =head1 DESCRIPTION Whenever you do I/O on a file in Perl, you do so through what in Perl is called a B<fi...
    perldoc.perl.org/perlopentut.txt
    Registered: Wed Jun 04 21:46:22 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. perlmodinstall.txt

    =head1 NAME perlmodinstall - Installing CPAN Modules =head1 DESCRIPTION You can think of a module as the fundamental unit of reusable Perl code; see L<perlmod> for details. Whenever anyone creates ...
    perldoc.perl.org/perlmodinstall.txt
    Registered: Wed Jun 04 20:52:45 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. crypt.txt

    =over =item crypt PLAINTEXT,SALT X<crypt> X<digest> X<hash> X<salt> X<plaintext> X<password> X<decrypt> X<cryptography> X<passwd> X<encrypt> Creates a digest string exactly like the L<crypt(3)> fun...
    perldoc.perl.org/functions/crypt.txt
    Registered: Thu Jun 05 13:46:28 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  5. alarm.txt

    =over =item alarm SECONDS X<alarm> X<SIGALRM> X<timer> =item alarm Arranges to have a SIGALRM delivered to this process after the specified number of wallclock seconds has elapsed. If SECONDS is no...
    perldoc.perl.org/functions/alarm.txt
    Registered: Thu Jun 05 18:06:56 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  6. readline.txt

    =over =item readline EXPR =item readline X<readline> X<gets> X<fgets> Reads from the filehandle whose typeglob is contained in EXPR (or from C<*ARGV> if EXPR is not provided). In scalar context, ea...
    perldoc.perl.org/functions/readline.txt
    Registered: Thu Jun 05 12:26:43 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. exists.txt

    =over =item exists EXPR X<exists> X<autovivification> Given an expression that specifies an element of a hash, returns true if the specified element in the hash has ever been initialized, even if t...
    perldoc.perl.org/functions/exists.txt
    Registered: Thu Jun 05 14:48:33 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. accept.txt

    =over =item accept NEWSOCKET,GENERICSOCKET X<accept> Accepts an incoming socket connect, just as L<accept(2)> does. Returns the packed address if it succeeded, false otherwise. See the example in L...
    perldoc.perl.org/functions/accept.txt
    Registered: Thu Jun 05 19:13:16 UTC 2025
    - 445 bytes
    - Viewed (0)
  9. log.txt

    =over =item log EXPR X<log> X<logarithm> X<e> X<ln> X<base> =item log Returns the natural logarithm (base I<e>) of EXPR. If EXPR is omitted, returns the log of L<C<$_>|perlvar/$_>. To get the log o...
    perldoc.perl.org/functions/log.txt
    Registered: Thu Jun 05 14:08:40 UTC 2025
    - 495 bytes
    - Viewed (0)
  10. dbmclose.txt

    =over =item dbmclose HASH X<dbmclose> [This function has been largely superseded by the L<C<untie>|/untie VARIABLE> function.] Breaks the binding between a DBM file and a hash. Portability issues: ...
    perldoc.perl.org/functions/dbmclose.txt
    Registered: Thu Jun 05 06:40:25 UTC 2025
    - 229 bytes
    - Viewed (0)
Back to top