Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2481 - 2490 of 3,197 for filetype:txt (0.06 sec)

  1. rand.txt

    =over =item rand EXPR X<rand> X<random> =item rand Returns a random fractional number greater than or equal to C<0> and less than the value of EXPR. (EXPR should be positive.) If EXPR is omitted, t...
    perldoc.perl.org/functions/rand.txt
    Registered: Tue Nov 26 21:52:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. shift.txt

    =over =item shift ARRAY X<shift> =item shift Removes and returns the B<first> element of an array. This shortens the array by one and moves everything down. my @arr = ('cat', 'dog'); my $item = shi...
    perldoc.perl.org/functions/shift.txt
    Registered: Wed Nov 27 01:06:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. atan2.txt

    =over =item atan2 Y,X X<atan2> X<arctangent> X<tan> X<tangent> Returns the arctangent of Y/X in the range -PI to PI. For the tangent operation, you may use the L<C<Math::Trig::tan>|Math::Trig/B<tan...
    perldoc.perl.org/functions/atan2.txt
    Registered: Wed Nov 27 04:59:14 UTC 2024
    - 449 bytes
    - Viewed (0)
  4. lcfirst.txt

    =over =item lcfirst EXPR X<lcfirst> X<lowercase> =item lcfirst Returns the value of EXPR with the first character lowercased. This is the internal function implementing the C<\l> escape in double-q...
    perldoc.perl.org/functions/lcfirst.txt
    Registered: Wed Nov 27 02:47:41 UTC 2024
    - 376 bytes
    - Viewed (0)
  5. sysread.txt

    =over =item sysread FILEHANDLE,SCALAR,LENGTH,OFFSET X<sysread> =item sysread FILEHANDLE,SCALAR,LENGTH Attempts to read LENGTH bytes of data into variable SCALAR from the specified FILEHANDLE, using...
    perldoc.perl.org/functions/sysread.txt
    Registered: Tue Nov 26 18:24:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. splice.txt

    =over =item splice ARRAY,OFFSET,LENGTH,LIST X<splice> =item splice ARRAY,OFFSET,LENGTH =item splice ARRAY,OFFSET =item splice ARRAY Removes the elements designated by OFFSET and LENGTH from an arra...
    perldoc.perl.org/functions/splice.txt
    Registered: Tue Nov 26 19:46:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. push.txt

    =over =item push ARRAY,LIST X<push> X<stack> Adds one or more items to the B<end> of an array. my @animals = ("cat"); push(@animals, "mouse"); # ("cat", "mouse") my @colors = ("red"); push(@colors,...
    perldoc.perl.org/functions/push.txt
    Registered: Tue Nov 26 19:29:23 UTC 2024
    - 668 bytes
    - Viewed (0)
  8. perldiag.txt

    =head1 NAME perldiag - various Perl diagnostics =head1 DESCRIPTION These messages are classified as follows (listed in increasing order of desperation): (W) A warning (optional). (D) A deprecation ...
    perldoc.perl.org/perldiag.txt
    Registered: Tue Nov 26 17:46:40 UTC 2024
    - 309.2K bytes
    - Viewed (0)
  9. format.txt

    =over =item format X<format> Declare a picture format for use by the L<C<write>|/write FILEHANDLE> function. For example: format Something = Test: @<<<<<<<< @||||| @>>>>> $str, $%, '$' . int($num) ...
    perldoc.perl.org/functions/format.txt
    Registered: Wed Nov 27 02:03:17 UTC 2024
    - 377 bytes
    - Viewed (0)
  10. __LINE__.txt

    =over =item __LINE__ X<__LINE__> A special token that compiles to the current line number. It can be altered by the mechanism described at L<perlsyn/"Plain Old Comments (Not!)">. =back 187
    perldoc.perl.org/functions/__LINE__.txt
    Registered: Wed Nov 27 06:42:33 UTC 2024
    - 187 bytes
    - Viewed (0)
Back to top