Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 121 - 130 of 1,302 for label:perl (0.02 sec)

  1. 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 20 20:49:15 UTC 2024
    - 449 bytes
    - Viewed (0)
  2. 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: Thu Nov 21 01:44:55 UTC 2024
    - 377 bytes
    - Viewed (0)
  3. perltooc.txt

    =encoding utf8 =head1 NAME perltooc - Links to information on object-oriented programming in Perl =head1 DESCRIPTION For information on OO programming with Perl, please see L<perlootut> and L<perlo...
    perldoc.perl.org/perltooc.txt
    Registered: Wed Nov 20 10:26:42 UTC 2024
    - 294 bytes
    - Viewed (0)
  4. kill.txt

    =over =item kill SIGNAL, LIST =item kill SIGNAL X<kill> X<signal> Sends a signal to a list of processes. Returns the number of arguments that were successfully used to signal (which is not necessar...
    perldoc.perl.org/functions/kill.txt
    Registered: Thu Nov 21 07:15:20 UTC 2024
    - 2.7K 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: Thu Nov 21 05:33:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. exit.txt

    =over =item exit EXPR X<exit> X<terminate> X<abort> =item exit Evaluates EXPR and exits immediately with that value. Example: my $ans = <STDIN>; exit 0 if $ans =~ /^[Xx]/; See also L<C<die>|/die LI...
    perldoc.perl.org/functions/exit.txt
    Registered: Thu Nov 21 05:53:30 UTC 2024
    - 1.4K 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: Thu Nov 21 04:31:39 UTC 2024
    - 668 bytes
    - Viewed (0)
  8. getpgrp.txt

    =over =item getpgrp PID X<getpgrp> X<group> Returns the current process group for the specified PID. Use a PID of C<0> to get the current process group for the current process. Will raise an except...
    perldoc.perl.org/functions/getpgrp.txt
    Registered: Thu Nov 21 07:40:36 UTC 2024
    - 478 bytes
    - Viewed (0)
  9. __SUB__.txt

    =over =item __SUB__ X<__SUB__> A special token that returns a reference to the current subroutine, or L<C<undef>|/undef EXPR> outside of a subroutine. The behaviour of L<C<__SUB__>|/__SUB__> within...
    perldoc.perl.org/functions/__SUB__.txt
    Registered: Thu Nov 21 06:33:52 UTC 2024
    - 407 bytes
    - Viewed (0)
  10. class.txt

    =over =item class NAMESPACE =item class NAMESPACE VERSION =item class NAMESPACE BLOCK =item class NAMESPACE VERSION BLOCK Declares the BLOCK or the rest of the compilation unit as being in the give...
    perldoc.perl.org/functions/class.txt
    Registered: Thu Nov 21 08:44:04 UTC 2024
    - 374 bytes
    - Viewed (0)
Back to top