Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 10 of 196 for filetype:txt (0.02 sec)

  1. tie.txt

    =over =item tie VARIABLE,CLASSNAME,LIST X<tie> This function binds a variable to a package class that will provide the implementation for the variable. VARIABLE is the name of the variable to be en...
    perldoc.perl.org/functions/tie.txt
    Registered: Thu Apr 03 01:35:57 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. 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: Thu Apr 03 02:30:25 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. 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: Thu Apr 03 01:29:53 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  4. 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: Thu Apr 03 03:22:45 UTC 2025
    - 1K bytes
    - Viewed (0)
  5. pipe.txt

    =over =item pipe READHANDLE,WRITEHANDLE X<pipe> Opens a pair of connected pipes like the corresponding system call. Note that if you set up a loop of piped processes, deadlock can occur unless you ...
    perldoc.perl.org/functions/pipe.txt
    Registered: Thu Apr 03 01:11:38 UTC 2025
    - 831 bytes
    - Viewed (0)
  6. 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: Thu Apr 03 01:52:52 UTC 2025
    - 809 bytes
    - Viewed (0)
  7. 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: Thu Apr 03 00:40:24 UTC 2025
    - 754 bytes
    - Viewed (0)
  8. field.txt

    =over =item field VARNAME X<field> Declares a new field variable within the current class. Methods and C<ADJUST> blocks of the class will have access to this variable as if it was a lexical in scop...
    perldoc.perl.org/functions/field.txt
    Registered: Thu Apr 03 03:38:13 UTC 2025
    - 223 bytes
    - Viewed (0)
  9. getgrgid.txt

    =over =item getpwnam NAME X<getpwnam> X<getgrnam> X<gethostbyname> X<getnetbyname> X<getprotobyname> X<getpwuid> X<getgrgid> X<getservbyname> X<gethostbyaddr> X<getnetbyaddr> X<getprotobynumber> X<...
    perldoc.perl.org/functions/getgrgid.txt Similar Results (28)
    Registered: Thu Apr 03 10:28:12 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. 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: Thu Apr 03 04:01:18 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top