GRAYBYTE WORDPRESS FILE MANAGER5120

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/share/perl5/vendor_perl/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


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 <leont@cpan.org>

=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

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 03 2024 20:50:36
root / root
0755
Algorithm
--
March 03 2024 19:11:22
root / root
0755
App
--
June 04 2025 01:48:16
root / root
0755
Archive
--
March 03 2024 19:11:22
root / root
0755
Authen
--
March 03 2024 23:04:37
root / root
0755
B
--
March 03 2024 19:11:22
root / root
0755
CPAN
--
June 04 2025 01:48:16
root / root
0755
Carp
--
March 03 2024 19:11:19
root / root
0755
Config
--
March 03 2024 19:11:22
root / root
0755
Data
--
March 03 2024 23:04:38
root / root
0755
Date
--
March 03 2024 23:04:32
root / root
0755
Digest
--
March 03 2024 23:04:36
root / root
0755
Encode
--
March 03 2024 19:11:22
root / root
0755
Error
--
March 03 2024 19:11:22
root / root
0755
Exporter
--
March 03 2024 19:11:19
root / root
0755
ExtUtils
--
March 03 2024 19:12:34
root / root
0755
File
--
March 03 2024 23:04:33
root / root
0755
Filter
--
March 03 2024 19:11:22
root / root
0755
Getopt
--
March 03 2024 19:11:18
root / root
0755
Git
--
June 03 2025 22:48:53
root / root
0755
HTML
--
March 03 2024 23:04:36
root / root
0755
HTTP
--
June 15 2024 08:33:38
root / root
0755
IO
--
March 03 2024 23:04:34
root / root
0755
IPC
--
March 03 2024 19:11:22
root / root
0755
JSON
--
March 03 2024 19:11:21
root / root
0755
LWP
--
March 03 2024 23:04:46
root / root
0755
Locale
--
March 03 2024 19:11:22
root / root
0755
MRO
--
March 03 2024 19:11:23
root / root
0755
Math
--
March 03 2024 19:11:22
root / root
0755
Module
--
March 03 2024 19:12:34
root / root
0755
Mozilla
--
March 03 2024 19:11:18
root / root
0755
Net
--
March 05 2024 23:47:46
root / root
0755
POD2
--
March 03 2024 19:11:23
root / root
0755
Package
--
March 03 2024 19:11:22
root / root
0755
Params
--
March 03 2024 19:11:22
root / root
0755
Parse
--
March 03 2024 19:11:22
root / root
0755
Perl
--
March 03 2024 19:11:21
root / root
0755
PerlIO
--
March 03 2024 19:11:23
root / root
0755
Pod
--
March 03 2024 19:11:22
root / root
0755
Software
--
March 03 2024 19:11:23
root / root
0755
Sub
--
March 03 2024 19:11:22
root / root
0755
TAP
--
March 03 2024 19:11:20
root / root
0755
Term
--
March 03 2024 19:11:18
root / root
0755
Test
--
March 03 2024 19:11:23
root / root
0755
Test2
--
March 03 2024 19:11:23
root / root
0755
Text
--
March 03 2024 19:11:23
root / root
0755
Thread
--
March 03 2024 19:11:23
root / root
0755
Time
--
March 03 2024 23:04:32
root / root
0755
Try
--
March 03 2024 23:04:32
root / root
0755
Types
--
March 03 2024 23:04:26
root / root
0755
WWW
--
March 03 2024 23:04:31
root / root
0755
autodie
--
March 03 2024 19:11:22
root / root
0755
inc
--
March 03 2024 19:12:34
root / root
0755
lib
--
March 03 2024 19:11:23
root / root
0755
libwww
--
March 03 2024 23:04:46
root / root
0755
local
--
March 03 2024 19:11:23
root / root
0755
CPAN.pm
138.013 KB
June 03 2025 14:32:20
root / root
0644
Carp.pm
30.315 KB
October 13 2019 07:06:13
root / root
0644
Digest.pm
10.455 KB
October 13 2019 08:28:15
root / root
0644
Env.pm
5.395 KB
March 02 2013 17:10:37
root / root
0644
Error.pm
24.289 KB
October 14 2019 15:30:40
root / root
0644
Expect.pm
98.093 KB
May 18 2017 19:07:59
root / root
0644
Exporter.pm
18.307 KB
October 13 2019 08:52:02
root / root
0644
Fatal.pm
56.813 KB
July 09 2015 07:16:41
root / root
0644
Git.pm
46.945 KB
June 03 2025 03:21:07
root / root
0644
LWP.pm
21.168 KB
June 05 2018 18:49:03
root / root
0644
Test2.pm
6.243 KB
March 30 2018 05:53:02
root / root
0644
autodie.pm
12.584 KB
July 09 2015 07:16:41
root / root
0644
bigint.pm
22.85 KB
February 03 2018 10:59:33
root / root
0644
bignum.pm
20.642 KB
February 03 2018 10:59:37
root / root
0644
bigrat.pm
15.775 KB
February 03 2018 10:59:42
root / root
0644
constant.pm
14.379 KB
October 13 2019 13:55:02
root / root
0644
experimental.pm
6.829 KB
December 03 2017 17:40:21
root / root
0644
newgetopt.pl
2.154 KB
July 09 2010 12:26:51
root / root
0644
ok.pm
0.944 KB
March 30 2018 05:53:02
root / root
0644
parent.pm
2.515 KB
July 06 2018 17:53:12
root / root
0644
perldoc.pod
9.156 KB
August 02 2016 16:31:42
root / root
0644
perlfaq.pm
0.075 KB
June 05 2018 05:02:52
root / root
0644
perlfaq.pod
22.224 KB
June 05 2018 05:02:52
root / root
0644
perlfaq1.pod
14.118 KB
June 05 2018 05:02:52
root / root
0644
perlfaq2.pod
9.244 KB
June 05 2018 05:02:52
root / root
0644
perlfaq3.pod
36.655 KB
June 05 2018 05:02:52
root / root
0644
perlfaq4.pod
87.304 KB
June 05 2018 05:02:52
root / root
0644
perlfaq5.pod
54.205 KB
June 05 2018 05:02:52
root / root
0644
perlfaq6.pod
38.689 KB
June 05 2018 05:02:52
root / root
0644
perlfaq7.pod
36.93 KB
June 05 2018 05:02:52
root / root
0644
perlfaq8.pod
48.931 KB
June 05 2018 05:02:52
root / root
0644
perlfaq9.pod
14.499 KB
June 05 2018 05:02:52
root / root
0644
perlglossary.pod
134.016 KB
June 05 2018 05:02:52
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF