Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 401 - 410 of 1,316 for label:perl (0.1 sec)

  1. filetest.txt

    package filetest; our $VERSION = '1.03'; =head1 NAME filetest - Perl pragma to control the filetest permission operators =head1 SYNOPSIS $can_perhaps_read = -r "file"; # use the mode bits { use fil...
    perldoc.perl.org/filetest.txt
    Registered: Wed Sep 03 22:22:53 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. CORE.txt

    =head1 NAME CORE - Namespace for Perl's core routines =head1 SYNOPSIS BEGIN { *CORE::GLOBAL::hex = sub { 1; }; } print hex("0x50"),"\n"; # prints 1 print CORE::hex("0x50"),"\n"; # prints 80 CORE::s...
    perldoc.perl.org/CORE.txt
    Registered: Wed Sep 03 23:22:53 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  3. sort.txt

    package sort; use strict; use warnings; our $VERSION = '2.06'; sub import { shift; if (@_ == 0) { require Carp; Carp::croak("sort pragma requires arguments"); } $^H{sort} //= 0; for my $subpragma (...
    perldoc.perl.org/sort.txt
    Registered: Thu Sep 04 01:45:03 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. source::encoding.txt

    package source::encoding; use v5.40; our $VERSION = '0.01'; our $ascii_hint_bits = 0x00000010; sub import { unimport(); # Get rid of any 'use utf8' my (undef, $arg) = @_; if ($arg eq 'utf8') { requ...
    perldoc.perl.org/source::encoding.txt
    Registered: Thu Sep 04 03:37:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. DBM_Filter::null.txt

    package DBM_Filter::null ; use strict; use warnings; our $VERSION = '0.03'; sub Store { no warnings 'uninitialized'; $_ .= "\x00" ; } sub Fetch { no warnings 'uninitialized'; s/\x00$// ; } 1; __END...
    perldoc.perl.org/DBM_Filter::null.txt
    Registered: Thu Sep 04 02:29:53 UTC 2025
    - 967 bytes
    - Viewed (0)
  6. ExtUtils::ParseXS::Node.txt

    package ExtUtils::ParseXS::Node; use strict; use warnings; our $VERSION = '3.57'; =head1 NAME ExtUtils::ParseXS::Node - Classes for nodes of an ExtUtils::ParseXS AST =head1 SYNOPSIS XXX TBC =head1 ...
    perldoc.perl.org/ExtUtils::ParseXS::Node.txt
    Registered: Thu Sep 04 20:09:11 UTC 2025
    - 52.9K bytes
    - Viewed (0)
  7. ExtUtils::Install.txt

    package ExtUtils::Install; use strict; use Config qw(%Config); use Cwd qw(cwd); use Exporter (); use File::Basename qw(dirname); use File::Copy; use File::Path; use File::Spec; our @ISA = ('Exporte...
    perldoc.perl.org/ExtUtils::Install.txt
    Registered: Thu Sep 04 22:05:44 UTC 2025
    - 40K bytes
    - Viewed (0)
  8. I18N::LangTags.txt

    # Time-stamp: "2004-10-06 23:26:33 ADT" # Sean M. Burke <sburke@cpan.org> require 5.000; package I18N::LangTags; use strict; require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(); our @EXPO...
    perldoc.perl.org/I18N::LangTags.txt
    Registered: Thu Sep 04 21:06:52 UTC 2025
    - 27.4K bytes
    - Viewed (0)
  9. IO::Compress::FAQ.txt

    =head1 NAME IO::Compress::FAQ -- Frequently Asked Questions about IO::Compress =head1 DESCRIPTION Common questions answered. =head1 GENERAL =head2 Compatibility with Unix compress/uncompress. Altho...
    perldoc.perl.org/IO::Compress::FAQ.txt
    Registered: Thu Sep 04 20:37:54 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  10. ExtUtils::MM_Win32.txt

    package ExtUtils::MM_Win32; use strict; use warnings; =head1 NAME ExtUtils::MM_Win32 - methods to override UN*X behaviour in ExtUtils::MakeMaker =head1 SYNOPSIS use ExtUtils::MM_Win32; # Done inter...
    perldoc.perl.org/ExtUtils::MM_Win32.txt
    Registered: Thu Sep 04 22:27:12 UTC 2025
    - 17.1K bytes
    - Viewed (0)
Back to top