- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 231 - 240 of 1,302 for label:perl (0.12 sec)
-
AUTOLOAD.txt
=over =item AUTOLOAD This keyword is documented in L<perlsub/"Autoloading">. =back 85perldoc.perl.org/functions/AUTOLOAD.txtRegistered: Thu Nov 28 09:34:50 UTC 2024 - 85 bytes - Viewed (0) -
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.txtRegistered: Thu Nov 28 16:30:58 UTC 2024 - 27.5K bytes - Viewed (0) -
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.txtRegistered: Thu Nov 28 17:33:52 UTC 2024 - 16.7K bytes - Viewed (0) -
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.txtRegistered: Thu Nov 28 18:05:56 UTC 2024 - 12.9K bytes - Viewed (0) -
base.txt
use 5.008; package base; use strict 'vars'; our $VERSION = '2.27'; $VERSION =~ tr/_//d; # simplest way to avoid indexing of the package: no package statement sub base::__inc::unhook { @INC = grep !...perldoc.perl.org/base.txtRegistered: Thu Nov 28 15:05:25 UTC 2024 - 10.7K bytes - Viewed (0) -
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.txtRegistered: Thu Nov 28 18:16:43 UTC 2024 - 4.5K bytes - Viewed (0) -
CPAN::Meta.txt
use 5.006; use strict; use warnings; package CPAN::Meta; our $VERSION = '2.150010'; #pod =head1 SYNOPSIS #pod #pod use v5.10; #pod use strict; #pod use warnings; #pod use CPAN::Meta; #pod use Modul...perldoc.perl.org/CPAN::Meta.txtRegistered: Thu Nov 28 18:41:55 UTC 2024 - 29.6K bytes - Viewed (0) -
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.txtRegistered: Thu Nov 28 21:03:33 UTC 2024 - 2.9K bytes - Viewed (0) -
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.txtRegistered: Thu Nov 28 23:39:00 UTC 2024 - 3.1K bytes - Viewed (0) -
CPAN::Debug.txt
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- package CPAN::Debug; use strict; use vars qw($VERSION); $VERSION = "5.5001"; # module is internal to CPAN.pm %CPAN::DEBUG = qw[ CPAN 1 In...perldoc.perl.org/CPAN::Debug.txtRegistered: Thu Nov 28 23:59:51 UTC 2024 - 2.1K bytes - Viewed (0)