Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3481 - 3490 of 3,598 for filetype:txt (0.38 sec)

  1. reverse.txt

    =over =item reverse LIST X<reverse> X<rev> X<invert> In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of ...
    perldoc.perl.org/functions/reverse.txt
    Registered: Fri Dec 12 20:24:44 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. int.txt

    =over =item int EXPR X<int> X<integer> X<truncate> X<trunc> X<floor> =item int Returns the integer portion of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. You should not use this function fo...
    perldoc.perl.org/functions/int.txt
    Registered: Fri Dec 12 19:08:46 UTC 2025
    - 948 bytes
    - Viewed (0)
  3. unshift.txt

    =over =item unshift ARRAY,LIST X<unshift> Add one or more elements to the B<beginning> of an array. This is the opposite of a L<C<shift>|/shift ARRAY>. my @animals = ("cat"); unshift(@animals, "mou...
    perldoc.perl.org/functions/unshift.txt
    Registered: Fri Dec 12 15:29:54 UTC 2025
    - 922 bytes
    - Viewed (0)
  4. 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: Fri Dec 12 18:11:52 UTC 2025
    - 888 bytes
    - Viewed (0)
  5. 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: Fri Dec 12 19:37:40 UTC 2025
    - 476 bytes
    - Viewed (0)
  6. 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: Fri Dec 12 20:12:11 UTC 2025
    - 163 bytes
    - Viewed (0)
  7. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME C<goto> transfers execution to a specified point in the program. Unlike a function call, execution does not return to ...
    perldoc.perl.org/functions/goto.txt
    Registered: Fri Dec 12 21:58:15 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. do.txt

    =over =item do BLOCK X<do> X<block> Not really a function. Returns the value of the last command in the sequence of commands indicated by BLOCK. When modified by the C<while> or C<until> loop modif...
    perldoc.perl.org/functions/do.txt
    Registered: Fri Dec 12 21:41:37 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  9. utime.txt

    =over =item utime LIST X<utime> Changes the access and modification times on each file of a list of files. The first two elements of the list must be the NUMERIC access and modification times, in t...
    perldoc.perl.org/functions/utime.txt
    Registered: Fri Dec 12 23:56:39 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. dump.txt

    =over =item dump LABEL X<dump> X<core> X<undump> =item dump EXPR =item dump This function causes an immediate core dump. See also the B<-u> command-line switch in L<perlrun|perlrun/-u>, which does ...
    perldoc.perl.org/functions/dump.txt
    Registered: Sat Dec 13 00:08:17 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top