Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1831 - 1840 of 2,398 for filetype:txt (0.05 sec)

  1. 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: Mon Nov 04 16:56:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. 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: Mon Nov 04 18:27:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. 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: Mon Nov 04 17:23:29 UTC 2024
    - 902 bytes
    - Viewed (0)
  4. length.txt

    =over =item length EXPR X<length> X<size> =item length Returns the length in I<characters> of the value of EXPR. If EXPR is omitted, returns the length of L<C<$_>|perlvar/$_>. If EXPR is undefined,...
    perldoc.perl.org/functions/length.txt
    Registered: Mon Nov 04 18:24:01 UTC 2024
    - 713 bytes
    - Viewed (0)
  5. truncate.txt

    =over =item truncate FILEHANDLE,LENGTH X<truncate> =item truncate EXPR,LENGTH Truncates the file opened on FILEHANDLE, or named by EXPR, to the specified length. Raises an exception if truncate isn...
    perldoc.perl.org/functions/truncate.txt
    Registered: Mon Nov 04 15:42:54 UTC 2024
    - 573 bytes
    - Viewed (0)
  6. link.txt

    =over =item link OLDFILE,NEWFILE X<link> Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: L<perlport/link>. =back 183
    perldoc.perl.org/functions/link.txt
    Registered: Mon Nov 04 17:15:48 UTC 2024
    - 183 bytes
    - Viewed (0)
  7. 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: Mon Nov 04 17:30:43 UTC 2024
    - 163 bytes
    - Viewed (0)
  8. time.txt

    =over =item time X<time> X<epoch> Returns the number of non-leap seconds since whatever time the system considers to be the epoch, suitable for feeding to L<C<gmtime>|/gmtime EXPR> and L<C<localtim...
    perldoc.perl.org/functions/time.txt
    Registered: Tue Nov 05 19:24:54 UTC 2024
    - 853 bytes
    - Viewed (0)
  9. wantarray.txt

    =over =item wantarray X<wantarray> X<context> Returns true if the context of the currently executing subroutine or L<C<eval>|/eval EXPR> is looking for a list value. Returns false if the context is...
    perldoc.perl.org/functions/wantarray.txt
    Registered: Tue Nov 05 13:45:22 UTC 2024
    - 675 bytes
    - Viewed (0)
  10. __FILE__.txt

    =over =item __FILE__ X<__FILE__> A special token that returns the name of the file in which it occurs. It can be altered by the mechanism described at L<perlsyn/"Plain Old Comments (Not!)">. =back 199
    perldoc.perl.org/functions/__FILE__.txt
    Registered: Tue Nov 05 13:14:40 UTC 2024
    - 199 bytes
    - Viewed (0)
Back to top