$70 GRAYBYTE WORDPRESS FILE MANAGER $55

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/usr/share/perl5/vendor_perl/

HOME
Current File : /usr/share/perl5/vendor_perl//experimental.pm
package experimental;
$experimental::VERSION = '0.019';
use strict;
use warnings;
use version ();

BEGIN { eval { require feature } };
use Carp qw/croak carp/;

my %warnings = map { $_ => 1 } grep { /^experimental::/ } keys %warnings::Offsets;
my %features = map { $_ => 1 } $] > 5.015006 ? keys %feature::feature : do {
	my @features;
	if ($] >= 5.010) {
		push @features, qw/switch say state/;
		push @features, 'unicode_strings' if $] > 5.011002;
	}
	@features;
};

my %min_version = (
	array_base      => '5',
	autoderef       => '5.14.0',
	bitwise         => '5.22.0',
	const_attr      => '5.22.0',
	current_sub     => '5.16.0',
	evalbytes       => '5.16.0',
	fc              => '5.16.0',
	lexical_topic   => '5.10.0',
	lexical_subs    => '5.18.0',
	postderef       => '5.20.0',
	postderef_qq    => '5.20.0',
	refaliasing     => '5.22.0',
	regex_sets      => '5.18.0',
	say             => '5.10.0',
	smartmatch      => '5.10.0',
	signatures      => '5.20.0',
	state           => '5.10.0',
	switch          => '5.10.0',
	unicode_eval    => '5.16.0',
	unicode_strings => '5.12.0',
);
my %max_version = (
	autoderef       => '5.23.1',
	lexical_topic   => '5.23.4',
);

$_ = version->new($_) for values %min_version;
$_ = version->new($_) for values %max_version;

my %additional = (
	postderef  => ['postderef_qq'],
	switch     => ['smartmatch'],
);

sub _enable {
	my $pragma = shift;
	if ($warnings{"experimental::$pragma"}) {
		warnings->unimport("experimental::$pragma");
		feature->import($pragma) if exists $features{$pragma};
		_enable(@{ $additional{$pragma} }) if $additional{$pragma};
	}
	elsif ($features{$pragma}) {
		feature->import($pragma);
		_enable(@{ $additional{$pragma} }) if $additional{$pragma};
	}
	elsif (not exists $min_version{$pragma}) {
		croak "Can't enable unknown feature $pragma";
	}
	elsif ($] < $min_version{$pragma}) {
		my $stable = $min_version{$pragma};
		if ($stable->{version}[1] % 2) {
			$stable = version->new(
				"5.".($stable->{version}[1]+1).'.0'
			);
		}
		croak "Need perl $stable or later for feature $pragma";
	}
	elsif ($] >= ($max_version{$pragma} || 7)) {
		croak "Experimental feature $pragma has been removed from perl in version $max_version{$pragma}";
	}
}

sub import {
	my ($self, @pragmas) = @_;

	for my $pragma (@pragmas) {
		_enable($pragma);
	}
	return;
}

sub _disable {
	my $pragma = shift;
	if ($warnings{"experimental::$pragma"}) {
		warnings->import("experimental::$pragma");
		feature->unimport($pragma) if exists $features{$pragma};
		_disable(@{ $additional{$pragma} }) if $additional{$pragma};
	}
	elsif ($features{$pragma}) {
		feature->unimport($pragma);
		_disable(@{ $additional{$pragma} }) if $additional{$pragma};
	}
	elsif (not exists $min_version{$pragma}) {
		carp "Can't disable unknown feature $pragma, ignoring";
	}
}

sub unimport {
	my ($self, @pragmas) = @_;

	for my $pragma (@pragmas) {
		_disable($pragma);
	}
	return;
}

1;

#ABSTRACT: Experimental features made easy

__END__

=pod

=encoding UTF-8

=head1 NAME

experimental - Experimental features made easy

=head1 VERSION

version 0.019

=head1 SYNOPSIS

 use experimental 'lexical_subs', 'smartmatch';
 my sub foo { $_[0] ~~ 1 }

=head1 DESCRIPTION

This pragma provides an easy and convenient way to enable or disable
experimental features.

Every version of perl has some number of features present but considered
"experimental."  For much of the life of Perl 5, this was only a designation
found in the documentation.  Starting in Perl v5.10.0, and more aggressively in
v5.18.0, experimental features were placed behind pragmata used to enable the
feature and disable associated warnings.

The C<experimental> pragma exists to combine the required incantations into a
single interface stable across releases of perl.  For every experimental
feature, this should enable the feature and silence warnings for the enclosing
lexical scope:

  use experimental 'feature-name';

To disable the feature and, if applicable, re-enable any warnings, use:

  no experimental 'feature-name';

The supported features, documented further below, are:

=over 4

=item * C<array_base> - allow the use of C<$[> to change the starting index of C<@array>.

This is supported on all versions of perl.

=item * C<autoderef> - allow push, each, keys, and other built-ins on references.

This was added in perl 5.14.0 and removed in perl 5.23.1.

=item * C<bitwise> - allow the new stringwise bit operators

This was added in perl 5.22.0.

=item * C<const_attr> - allow the :const attribute on subs

This was added in perl 5.22.0.

=item * C<lexical_topic> - allow the use of lexical C<$_> via C<my $_>.

This was added in perl 5.10.0 and removed in perl 5.23.4.

=item * C<lexical_subs> - allow the use of lexical subroutines.

This was added in 5.18.0.

=item * C<postderef> - allow the use of postfix dereferencing expressions,
including in interpolating strings

This was added in perl 5.20.0.

=item * C<re_strict> - enables strict mode in regular expressions

This was added in perl 5.22.0.

=item * C<refaliasing> - allow aliasing via C<\$x = \$y>

This was added in perl 5.22.0.

=item * C<regex_sets> - allow extended bracketed character classes in regexps

This was added in perl 5.18.0.

=item * C<signatures> - allow subroutine signatures (for named arguments)

This was added in perl 5.20.0.

=item * C<smartmatch> - allow the use of C<~~>

This was added in perl 5.10.0, but it should be noted there are significant
incompatibilities between 5.10.0 and 5.10.1.

=item * C<switch> - allow the use of C<~~>, given, and when

This was added in perl 5.10.0.

=item * C<win32_perlio> - allows the use of the :win32 IO layer.

This was added on perl 5.22.0.

=back

=head2 Ordering matters

Using this pragma to 'enable an experimental feature' is another way of saying
that this pragma will disable the warnings which would result from using that
feature.  Therefore, the order in which pragmas are applied is important.  In
particular, you probably want to enable experimental features I<after> you
enable warnings:

  use warnings;
  use experimental 'smartmatch';

You also need to take care with modules that enable warnings for you.  A common
example being Moose.  In this example, warnings for the 'smartmatch' feature are
first turned on by the warnings pragma, off by the experimental pragma and back
on again by the Moose module (fix is to switch the last two lines):

  use warnings;
  use experimental 'smartmatch';
  use Moose;

=head2 Disclaimer

Because of the nature of the features it enables, forward compatibility can not
be guaranteed in any way.

=head1 SEE ALSO

L<perlexperimental|perlexperimental> contains more information about experimental features.

=head1 AUTHOR

Leon Timmermans <[email protected]>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Leon Timmermans.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut


Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
29 Jul 2025 2.08 AM
root / root
0755
Algorithm
--
3 Mar 2024 7.11 PM
root / root
0755
App
--
4 Jun 2025 2.09 AM
root / root
0755
Archive
--
3 Mar 2024 7.11 PM
root / root
0755
Authen
--
3 Mar 2024 11.04 PM
root / root
0755
B
--
3 Mar 2024 7.11 PM
root / root
0755
CPAN
--
4 Jun 2025 2.09 AM
root / root
0755
Carp
--
3 Mar 2024 7.11 PM
root / root
0755
Config
--
3 Mar 2024 7.11 PM
root / root
0755
Data
--
3 Mar 2024 11.04 PM
root / root
0755
Date
--
3 Mar 2024 11.04 PM
root / root
0755
Digest
--
3 Mar 2024 11.04 PM
root / root
0755
Encode
--
3 Mar 2024 7.11 PM
root / root
0755
Error
--
3 Mar 2024 7.11 PM
root / root
0755
Exporter
--
3 Mar 2024 7.11 PM
root / root
0755
ExtUtils
--
3 Mar 2024 7.12 PM
root / root
0755
File
--
3 Mar 2024 11.04 PM
root / root
0755
Filter
--
3 Mar 2024 7.11 PM
root / root
0755
Getopt
--
3 Mar 2024 7.11 PM
root / root
0755
Git
--
23 Jul 2025 2.08 PM
root / root
0755
HTML
--
3 Mar 2024 11.04 PM
root / root
0755
HTTP
--
9 Jun 2024 8.35 AM
root / root
0755
IO
--
3 Mar 2024 11.04 PM
root / root
0755
IPC
--
3 Mar 2024 7.11 PM
root / root
0755
JSON
--
3 Mar 2024 7.11 PM
root / root
0755
LWP
--
3 Mar 2024 11.04 PM
root / root
0755
Locale
--
3 Mar 2024 7.11 PM
root / root
0755
MRO
--
3 Mar 2024 7.11 PM
root / root
0755
Math
--
3 Mar 2024 7.11 PM
root / root
0755
Module
--
3 Mar 2024 7.12 PM
root / root
0755
Mozilla
--
3 Mar 2024 7.11 PM
root / root
0755
Net
--
21 Mar 2024 10.23 AM
root / root
0755
POD2
--
3 Mar 2024 7.11 PM
root / root
0755
Package
--
3 Mar 2024 7.11 PM
root / root
0755
Params
--
3 Mar 2024 7.11 PM
root / root
0755
Parse
--
3 Mar 2024 7.11 PM
root / root
0755
Perl
--
3 Mar 2024 7.11 PM
root / root
0755
PerlIO
--
3 Mar 2024 7.11 PM
root / root
0755
Pod
--
3 Mar 2024 7.11 PM
root / root
0755
Software
--
3 Mar 2024 7.11 PM
root / root
0755
Sub
--
3 Mar 2024 7.11 PM
root / root
0755
TAP
--
3 Mar 2024 7.11 PM
root / root
0755
Term
--
3 Mar 2024 7.11 PM
root / root
0755
Test
--
3 Mar 2024 7.11 PM
root / root
0755
Test2
--
3 Mar 2024 7.11 PM
root / root
0755
Text
--
3 Mar 2024 7.11 PM
root / root
0755
Thread
--
3 Mar 2024 7.11 PM
root / root
0755
Time
--
3 Mar 2024 11.04 PM
root / root
0755
Try
--
3 Mar 2024 11.04 PM
root / root
0755
Types
--
3 Mar 2024 11.04 PM
root / root
0755
WWW
--
3 Mar 2024 11.04 PM
root / root
0755
autodie
--
3 Mar 2024 7.11 PM
root / root
0755
inc
--
3 Mar 2024 7.12 PM
root / root
0755
lib
--
3 Mar 2024 7.11 PM
root / root
0755
libwww
--
3 Mar 2024 11.04 PM
root / root
0755
local
--
3 Mar 2024 7.11 PM
root / root
0755
CPAN.pm
138.013 KB
3 Jun 2025 2.32 PM
root / root
0644
Carp.pm
30.315 KB
13 Oct 2019 7.06 AM
root / root
0644
Digest.pm
10.455 KB
13 Oct 2019 8.28 AM
root / root
0644
Env.pm
5.395 KB
2 Mar 2013 5.10 PM
root / root
0644
Error.pm
24.289 KB
14 Oct 2019 3.30 PM
root / root
0644
Expect.pm
98.093 KB
18 May 2017 7.07 PM
root / root
0644
Exporter.pm
18.307 KB
13 Oct 2019 8.52 AM
root / root
0644
Fatal.pm
56.813 KB
9 Jul 2015 7.16 AM
root / root
0644
Git.pm
46.945 KB
22 Jul 2025 2.33 PM
root / root
0644
LWP.pm
21.168 KB
5 Jun 2018 6.49 PM
root / root
0644
Test2.pm
6.243 KB
30 Mar 2018 5.53 AM
root / root
0644
autodie.pm
12.584 KB
9 Jul 2015 7.16 AM
root / root
0644
bigint.pm
22.85 KB
3 Feb 2018 10.59 AM
root / root
0644
bignum.pm
20.642 KB
3 Feb 2018 10.59 AM
root / root
0644
bigrat.pm
15.775 KB
3 Feb 2018 10.59 AM
root / root
0644
constant.pm
14.379 KB
13 Oct 2019 1.55 PM
root / root
0644
experimental.pm
6.829 KB
3 Dec 2017 5.40 PM
root / root
0644
newgetopt.pl
2.154 KB
9 Jul 2010 12.26 PM
root / root
0644
ok.pm
0.944 KB
30 Mar 2018 5.53 AM
root / root
0644
parent.pm
2.515 KB
6 Jul 2018 5.53 PM
root / root
0644
perldoc.pod
9.156 KB
2 Aug 2016 4.31 PM
root / root
0644
perlfaq.pm
0.075 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq.pod
22.224 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq1.pod
14.118 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq2.pod
9.244 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq3.pod
36.655 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq4.pod
87.304 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq5.pod
54.205 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq6.pod
38.689 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq7.pod
36.93 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq8.pod
48.931 KB
5 Jun 2018 5.02 AM
root / root
0644
perlfaq9.pod
14.499 KB
5 Jun 2018 5.02 AM
root / root
0644
perlglossary.pod
134.016 KB
5 Jun 2018 5.02 AM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF