Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 101 - 110 of 1,306 for label:perl (0.04 sec)

  1. prototype.txt

    =over =item prototype FUNCTION X<prototype> =item prototype Returns the prototype of a function as a string (or L<C<undef>|/undef EXPR> if the function has no prototype). FUNCTION is a reference to...
    perldoc.perl.org/functions/prototype.txt
    Registered: Thu Apr 10 09:51:57 UTC 2025
    - 745 bytes
    - Viewed (0)
  2. 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 Apr 10 08:41:03 UTC 2025
    - 478 bytes
    - Viewed (0)
  3. no.txt

    =over =item no MODULE VERSION LIST X<no declarations> X<unimporting> =item no MODULE VERSION =item no MODULE LIST =item no MODULE =item no VERSION See the L<C<use>|/use Module VERSION LIST> functio...
    perldoc.perl.org/functions/no.txt
    Registered: Thu Apr 10 04:43:34 UTC 2025
    - 271 bytes
    - Viewed (0)
  4. msgctl.txt

    =over =item msgctl ID,CMD,ARG X<msgctl> Calls the System V IPC function L<msgctl(2)>. You'll probably have to say use IPC::SysV; first to get the correct constant definitions. If CMD is C<IPC_STAT>...
    perldoc.perl.org/functions/msgctl.txt
    Registered: Thu Apr 10 16:25:11 UTC 2025
    - 616 bytes
    - Viewed (0)
  5. gmtime.txt

    =over =item gmtime EXPR X<gmtime> X<UTC> X<Greenwich> =item gmtime Works just like L<C<localtime>|/localtime EXPR>, but the returned values are localized for the standard Greenwich time zone. Note:...
    perldoc.perl.org/functions/gmtime.txt
    Registered: Thu Apr 10 16:18:42 UTC 2025
    - 379 bytes
    - Viewed (0)
  6. __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: Thu Apr 10 12:25:20 UTC 2025
    - 187 bytes
    - Viewed (0)
  7. gt.txt

    =over =item and =item cmp =item eq =item ge =item gt =item isa =item le =item lt =item ne =item not =item or =item x =item xor These operators are documented in L<perlop>. =back 192
    perldoc.perl.org/functions/gt.txt Similar Results (12)
    Registered: Thu Apr 10 15:42:14 UTC 2025
    - 192 bytes
    - Viewed (0)
  8. encoding.txt

    # $Id: encoding.pm,v 3.00 2020/04/19 10:56:28 dankogai Exp $ package encoding; our $VERSION = sprintf "%d.%02d", q$Revision: 3.00 $ =~ /(\d+)/g; use Encode; use strict; use warnings; use Config; us...
    perldoc.perl.org/encoding.txt
    Registered: Sat Apr 12 15:35:01 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  9. bytes.txt

    package bytes 1.09; use v5.38; BEGIN { $bytes::hint_bits = 0x0000_0008 } sub import { $^H |= $bytes::hint_bits } sub unimport { $^H &= ~$bytes::hint_bits } sub chr :prototype(_) { BEGIN { import() ...
    perldoc.perl.org/bytes.txt
    Registered: Sat Apr 12 15:27:44 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  10. parent.txt

    package parent; use strict; our $VERSION = '0.241'; sub import { my $class = shift; my $inheritor = caller(0); if ( @_ and $_[0] eq '-norequire' ) { shift @_; } else { for ( my @filename = @_ ) { s...
    perldoc.perl.org/parent.txt
    Registered: Sat Apr 12 15:19:18 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top