Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 681 - 690 of 1,306 for label:perl (0.03 sec)

  1. ADJUST.txt

    =over =item ADJUST This class-related phaser block is documented in L<perlclass>. =back 90
    perldoc.perl.org/functions/ADJUST.txt
    Registered: Sat Apr 19 08:39:58 UTC 2025
    - 90 bytes
    - Viewed (0)
  2. defined.txt

    =over =item defined EXPR X<defined> X<undef> X<undefined> =item defined Returns a Boolean value telling whether EXPR has a value other than the undefined value L<C<undef>|/undef EXPR>. If EXPR is n...
    perldoc.perl.org/functions/defined.txt
    Registered: Sat Apr 19 12:50:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. my.txt

    =over =item my VARLIST X<my> =item my TYPE VARLIST =item my VARLIST : ATTRS =item my TYPE VARLIST : ATTRS A L<C<my>|/my VARLIST> declares the listed variables to be local (lexically) to the enclosi...
    perldoc.perl.org/functions/my.txt
    Registered: Sat Apr 19 12:58:11 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. next.txt

    =over =item next LABEL X<next> X<continue> =item next EXPR =item next The L<C<next>|/next LABEL> command is like the C<continue> statement in C; it starts the next iteration of the loop: LINE: whil...
    perldoc.perl.org/functions/next.txt
    Registered: Sat Apr 19 12:43:11 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  5. wait.txt

    =over =item wait X<wait> Behaves like L<wait(2)> on your system: it waits for a child process to terminate and returns the pid of the deceased process, or C<-1> if there are no child processes. The...
    perldoc.perl.org/functions/wait.txt
    Registered: Sat Apr 19 14:22:58 UTC 2025
    - 754 bytes
    - Viewed (0)
  6. shmget.txt

    =over =item shmget KEY,SIZE,FLAGS X<shmget> Calls the System V IPC function shmget. Returns the shared memory segment id, or L<C<undef>|/undef EXPR> on error. See also L<perlipc/"SysV IPC"> and the...
    perldoc.perl.org/functions/shmget.txt
    Registered: Sat Apr 19 11:26:46 UTC 2025
    - 293 bytes
    - Viewed (0)
  7. defer.txt

    =over =item defer This flow-control keyword related to the experimental C<defer> feature is documented in L<perlsyn/"defer blocks">. =back 141
    perldoc.perl.org/functions/defer.txt
    Registered: Sat Apr 19 12:23:49 UTC 2025
    - 141 bytes
    - Viewed (0)
  8. charnames.txt

    package charnames; use strict; use warnings; our $VERSION = '1.50'; use unicore::Name; # mktables-generated algorithmically-defined names use _charnames (); # The submodule for this where most of t...
    perldoc.perl.org/charnames.txt
    Registered: Sat Apr 19 18:55:44 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  9. IO::Handle.txt

    package IO::Handle; =head1 NAME IO::Handle - supply object methods for I/O handles =head1 SYNOPSIS use IO::Handle; my $io = IO::Handle->new(); if ($io->fdopen(fileno(STDIN),"r")) { print $io->getli...
    perldoc.perl.org/IO::Handle.txt
    Registered: Sat Apr 19 18:39:44 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  10. Test::Harness.txt

    package Test::Harness; use 5.006; use strict; use warnings; use constant IS_WIN32 => ( $^O =~ /^(MS)?Win32$/ ); use constant IS_VMS => ( $^O eq 'VMS' ); use TAP::Harness (); use TAP::Parser::Aggreg...
    perldoc.perl.org/Test::Harness.txt
    Registered: Sat Apr 19 21:27:17 UTC 2025
    - 16.3K bytes
    - Viewed (0)
Back to top