Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 51 - 60 of 3,598 for filetype:txt (0.06 sec)

  1. next.txt

    =over =item next LABEL X<next> X<continue> =item next EXPR =item next The C<next> command is like the C<continue> statement in C; it starts the next iteration of the loop: LINE: while (<STDIN>) { n...
    perldoc.perl.org/functions/next.txt
    Registered: Tue Nov 25 04:43:23 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. scalar.txt

    =over =item scalar EXPR X<scalar> X<context> Forces EXPR to be interpreted in scalar context and returns the value of EXPR. my @counts = ( scalar @a, scalar @b, scalar @c ); There is no equivalent ...
    perldoc.perl.org/functions/scalar.txt
    Registered: Tue Nov 25 06:11:12 UTC 2025
    - 1K bytes
    - Viewed (0)
  3. 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: Tue Nov 25 06:55:18 UTC 2025
    - 745 bytes
    - Viewed (0)
  4. socket.txt

    =over =item socket SOCKET,DOMAIN,TYPE,PROTOCOL X<socket> Opens a socket of the specified kind and attaches it to filehandle SOCKET. DOMAIN, TYPE, and PROTOCOL are specified the same as for the sysc...
    perldoc.perl.org/functions/socket.txt
    Registered: Tue Nov 25 04:22:02 UTC 2025
    - 561 bytes
    - Viewed (0)
  5. seek.txt

    =over =item seek FILEHANDLE,POSITION,WHENCE X<seek> X<fseek> X<filehandle, position> Sets FILEHANDLE's position, just like the L<fseek(3)> call of C C<stdio>. FILEHANDLE may be an expression whose ...
    perldoc.perl.org/functions/seek.txt
    Registered: Tue Nov 25 14:28:33 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  6. sleep.txt

    =over =item sleep EXPR X<sleep> X<pause> =item sleep Causes the script to sleep for (integer) EXPR seconds, or forever if no argument is given. Returns the integer number of seconds actually slept....
    perldoc.perl.org/functions/sleep.txt
    Registered: Tue Nov 25 14:22:11 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. readdir.txt

    =over =item readdir DIRHANDLE X<readdir> Returns the next directory entry for a directory opened by L<C<opendir>|/opendir DIRHANDLE,EXPR>. If used in list context, returns all the rest of the entri...
    perldoc.perl.org/functions/readdir.txt
    Registered: Tue Nov 25 14:02:12 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. recv.txt

    =over =item recv SOCKET,SCALAR,LENGTH,FLAGS X<recv> Receives a message on a socket. Attempts to receive LENGTH characters of data into variable SCALAR from the specified SOCKET filehandle. SCALAR w...
    perldoc.perl.org/functions/recv.txt
    Registered: Tue Nov 25 16:32:53 UTC 2025
    - 809 bytes
    - Viewed (0)
  9. Test2::Event::Subtest.txt

    package Test2::Event::Subtest; use strict; use warnings; our $VERSION = '1.302210'; BEGIN { require Test2::Event::Ok; our @ISA = qw(Test2::Event::Ok) } use Test2::Util::HashBase qw{subevents buffer...
    perldoc.perl.org/Test2::Event::Subtest.txt
    Registered: Mon Dec 01 09:17:49 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. perlclib.txt

    =head1 NAME perlclib - Interacting with standard C library functions =head1 DESCRIPTION The perl interpreter is written in C; XS code also expands to C. Inevitably, this code will call some functio...
    perldoc.perl.org/perlclib.txt
    Registered: Sat Dec 06 13:42:24 UTC 2025
    - 53.3K bytes
    - Viewed (0)
Back to top