Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2111 - 2120 of 2,621 for host:perldoc.perl.org (0.04 sec)

  1. Compress::Raw::Zlib.txt

    package Compress::Raw::Zlib; require 5.006 ; require Exporter; use Carp ; use strict ; use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, %EXPORT_TAGS, @EXPORT_OK, $AUTOLOAD, %DE...
    perldoc.perl.org/Compress::Raw::Zlib.txt
    Registered: Sun Apr 20 11:35:53 UTC 2025
    - 47.9K bytes
    - Viewed (0)
  2. Benchmark.txt

    package Benchmark; use strict; =head1 NAME Benchmark - benchmark running times of Perl code =head1 SYNOPSIS use Benchmark qw(:all) ; timethis ($count, "code"); # Use Perl code in strings... timethe...
    perldoc.perl.org/Benchmark.txt
    Registered: Sun Apr 20 13:09:49 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  3. CPAN::Meta::YAML.txt

    use 5.008001; # sane UTF-8 support use strict; use warnings; package CPAN::Meta::YAML; # git description: v1.68-2-gcc5324e # XXX-INGY is 5.8.1 too old/broken for utf8? # XXX-XDG Lancaster consensus...
    perldoc.perl.org/CPAN::Meta::YAML.txt
    Registered: Sun Apr 20 07:30:40 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  4. utf8.txt

    package utf8; use strict; use warnings; our $hint_bits = 0x00800000; our $VERSION = '1.25'; our $AUTOLOAD; sub import { $^H |= $hint_bits; } sub unimport { $^H &= ~$hint_bits; } sub AUTOLOAD { goto...
    perldoc.perl.org/utf8.txt
    Registered: Sun Apr 20 14:08:10 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  5. CPAN::Meta::History::Meta_1_0.txt

    =for :stopwords DOAP RDF =head1 NAME CPAN::Meta::History::Meta_1_0 - Version 1.0 metadata specification for META.yml =head1 PREFACE This is a historical copy of the version 1.0 specification for F<...
    perldoc.perl.org/CPAN::Meta::History::Meta_1_0.txt
    Registered: Sun Apr 20 13:22:47 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. autouse.txt

    package autouse; #use strict; # debugging only use 5.006; # use warnings $autouse::VERSION = '1.11'; $autouse::DEBUG ||= 0; sub vet_import ($); sub croak { require Carp; Carp::croak(@_); } sub impo...
    perldoc.perl.org/autouse.txt
    Registered: Sun Apr 20 08:08:18 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  7. vmsish.txt

    package vmsish; our $VERSION = '1.04'; =head1 NAME vmsish - Perl pragma to control VMS-specific language features =head1 SYNOPSIS use vmsish; use vmsish 'status'; # or '$?' use vmsish 'exit'; use v...
    perldoc.perl.org/vmsish.txt
    Registered: Sun Apr 20 11:13:53 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. DBM_Filter::int32.txt

    package DBM_Filter::int32 ; use strict; use warnings; our $VERSION = '0.03'; # todo get Filter to figure endian. sub Store { $_ = 0 if ! defined $_ || $_ eq "" ; $_ = pack("i", $_); } sub Fetch { n...
    perldoc.perl.org/DBM_Filter::int32.txt
    Registered: Sun Apr 20 11:50:30 UTC 2025
    - 754 bytes
    - Viewed (0)
  9. feature.txt

    # -*- mode: Perl; buffer-read-only: t -*- # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! # This file is built by regen/feature.pl. # Any changes made here will be lost! package feature; our $VERSION = '1....
    perldoc.perl.org/feature.txt
    Registered: Fri Apr 18 19:41:41 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  10. each.txt

    =over =item each HASH X<each> X<hash, iterator> =item each ARRAY X<array, iterator> When called on a hash in list context, returns a 2-element list consisting of the key and value for the next elem...
    perldoc.perl.org/functions/each.txt
    Registered: Fri Apr 18 20:21:02 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top