Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 331 - 340 of 1,306 for label:perl (0.03 sec)

  1. overload.txt

    package overload; use strict; no strict 'refs'; our $VERSION = '1.37'; our %ops = ( with_assign => "+ - * / % ** << >> x .", assign => "+= -= *= /= %= **= <<= >>= x= .=", num_comparison => "< <= > ...
    perldoc.perl.org/overload.txt
    Registered: Sat Apr 12 17:36:10 UTC 2025
    - 53.4K bytes
    - Viewed (0)
  2. bignum.txt

    package bignum; use strict; use warnings; use Carp qw< carp croak >; our $VERSION = '0.67'; use Exporter; our @ISA = qw( Exporter ); our @EXPORT_OK = qw( PI e bpi bexp hex oct ); our @EXPORT = qw( ...
    perldoc.perl.org/bignum.txt
    Registered: Sat Apr 12 14:08:24 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  3. autodie::hints.txt

    package autodie::hints; use strict; use warnings; use constant PERL58 => ( $] < 5.009 ); our $VERSION = '2.37'; # VERSION: Generated by DZP::OurPkg:Version # ABSTRACT: Provide hints about user subr...
    perldoc.perl.org/autodie::hints.txt
    Registered: Sat Apr 12 15:04:42 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  4. builtin.txt

    package builtin 0.014; use strict; use warnings; # All code, including &import, is implemented by always-present # functions in the perl interpreter itself. # See also `builtin.c` in perl source 1;...
    perldoc.perl.org/builtin.txt
    Registered: Sat Apr 12 16:45:21 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  5. deprecate.txt

    package deprecate; use strict; use warnings; our $VERSION = 0.04; # our %Config can ignore %Config::Config, e.g. for testing our %Config; unless (%Config) { require Config; *Config = \%Config::Conf...
    perldoc.perl.org/deprecate.txt
    Registered: Sat Apr 12 17:00:28 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. 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: Sat Apr 12 15:50:17 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. sort.txt

    package sort; use strict; use warnings; our $VERSION = '2.05'; 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: Sat Apr 12 16:01:03 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  8. ok.txt

    package ok; our $VERSION = '1.302199'; use strict; use Test::More (); sub import { shift; if (@_) { goto &Test::More::pass if $_[0] eq 'ok'; goto &Test::More::use_ok; } # No argument list - croak a...
    perldoc.perl.org/ok.txt
    Registered: Sat Apr 12 16:29:57 UTC 2025
    - 971 bytes
    - Viewed (0)
  9. DB_File.txt

    # DB_File.pm -- Perl 5 interface to Berkeley DB # # Written by Paul Marquess (pmqs@cpan.org) # # Copyright (c) 1995-2023 Paul Marquess. All rights reserved. # This program is free software; you can...
    perldoc.perl.org/DB_File.txt
    Registered: Sun Apr 13 06:00:48 UTC 2025
    - 64.9K bytes
    - Viewed (0)
  10. CPAN::Meta::Prereqs.txt

    use 5.006; use strict; use warnings; package CPAN::Meta::Prereqs; our $VERSION = '2.150010'; #pod =head1 DESCRIPTION #pod #pod A CPAN::Meta::Prereqs object represents the prerequisites for a CPAN #...
    perldoc.perl.org/CPAN::Meta::Prereqs.txt
    Registered: Sun Apr 13 05:30:43 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top