PHP 8.2.30
Preview: experimental.pm Size: 6.83 KB
//proc/thread-self/root/proc/self/root/proc/thread-self/root/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

Directory Contents

Dirs: 55 × Files: 33

Name Size Perms Modified Actions
Algorithm DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
App DIR
- drwxr-xr-x 2025-06-04 03:33:45
Edit Download
Archive DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Authen DIR
- drwxr-xr-x 2024-03-03 23:04:37
Edit Download
autodie DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
B DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Carp DIR
- drwxr-xr-x 2024-03-03 19:11:19
Edit Download
Config DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
CPAN DIR
- drwxr-xr-x 2025-06-04 03:33:45
Edit Download
Data DIR
- drwxr-xr-x 2024-03-03 23:04:38
Edit Download
Date DIR
- drwxr-xr-x 2024-03-03 23:04:32
Edit Download
Digest DIR
- drwxr-xr-x 2024-03-03 23:04:36
Edit Download
Encode DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Error DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Exporter DIR
- drwxr-xr-x 2024-03-03 19:11:19
Edit Download
ExtUtils DIR
- drwxr-xr-x 2024-03-03 19:12:34
Edit Download
File DIR
- drwxr-xr-x 2024-03-03 23:04:33
Edit Download
Filter DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Getopt DIR
- drwxr-xr-x 2024-03-03 19:11:18
Edit Download
Git DIR
- drwxr-xr-x 2025-07-23 15:33:24
Edit Download
HTML DIR
- drwxr-xr-x 2024-03-03 23:04:36
Edit Download
HTTP DIR
- drwxr-xr-x 2024-06-15 07:04:10
Edit Download
inc DIR
- drwxr-xr-x 2024-03-03 19:12:34
Edit Download
IO DIR
- drwxr-xr-x 2024-03-03 23:04:34
Edit Download
IPC DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
JSON DIR
- drwxr-xr-x 2024-03-03 19:11:21
Edit Download
lib DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
libwww DIR
- drwxr-xr-x 2024-03-03 23:04:46
Edit Download
local DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Locale DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
LWP DIR
- drwxr-xr-x 2024-03-03 23:04:46
Edit Download
Math DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Module DIR
- drwxr-xr-x 2024-03-03 19:12:34
Edit Download
Mozilla DIR
- drwxr-xr-x 2024-03-03 19:11:18
Edit Download
MRO DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Net DIR
- drwxr-xr-x 2024-03-21 10:23:44
Edit Download
Package DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Params DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Parse DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
Perl DIR
- drwxr-xr-x 2024-03-03 19:11:21
Edit Download
PerlIO DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Pod DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
POD2 DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Software DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Sub DIR
- drwxr-xr-x 2024-03-03 19:11:22
Edit Download
TAP DIR
- drwxr-xr-x 2024-03-03 19:11:20
Edit Download
Term DIR
- drwxr-xr-x 2024-03-03 19:11:18
Edit Download
Test DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Test2 DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Text DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Thread DIR
- drwxr-xr-x 2024-03-03 19:11:23
Edit Download
Time DIR
- drwxr-xr-x 2024-03-03 23:04:32
Edit Download
Try DIR
- drwxr-xr-x 2024-03-03 23:04:32
Edit Download
Types DIR
- drwxr-xr-x 2024-03-03 23:04:26
Edit Download
WWW DIR
- drwxr-xr-x 2024-03-03 23:04:31
Edit Download
12.58 KB lrw-r--r-- 2015-07-09 07:16:41
Edit Download
22.85 KB lrw-r--r-- 2018-02-03 10:59:33
Edit Download
20.64 KB lrw-r--r-- 2018-02-03 10:59:37
Edit Download
15.78 KB lrw-r--r-- 2018-02-03 10:59:42
Edit Download
30.32 KB lrw-r--r-- 2019-10-13 07:06:13
Edit Download
14.38 KB lrw-r--r-- 2019-10-13 13:55:02
Edit Download
138.01 KB lrw-r--r-- 2025-06-03 14:32:20
Edit Download
10.46 KB lrw-r--r-- 2019-10-13 08:28:15
Edit Download
5.39 KB lrw-r--r-- 2013-03-02 17:10:37
Edit Download
24.29 KB lrw-r--r-- 2019-10-14 15:30:40
Edit Download
98.09 KB lrw-r--r-- 2017-05-18 19:07:59
Edit Download
6.83 KB lrw-r--r-- 2017-12-03 17:40:21
Edit Download
18.31 KB lrw-r--r-- 2019-10-13 08:52:02
Edit Download
56.81 KB lrw-r--r-- 2015-07-09 07:16:41
Edit Download
46.95 KB lrw-r--r-- 2025-07-22 14:33:06
Edit Download
21.17 KB lrw-r--r-- 2018-06-05 18:49:03
Edit Download
2.15 KB lrw-r--r-- 2010-07-09 12:26:51
Edit Download
967 B lrw-r--r-- 2018-03-30 05:53:02
Edit Download
2.51 KB lrw-r--r-- 2018-07-06 17:53:12
Edit Download
9.16 KB lrw-r--r-- 2016-08-02 16:31:42
Edit Download
77 B lrw-r--r-- 2018-06-05 05:02:52
Edit Download
22.22 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
14.12 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
9.24 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
36.66 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
87.30 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
54.21 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
38.69 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
36.93 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
48.93 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
14.50 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
134.02 KB lrw-r--r-- 2018-06-05 05:02:52
Edit Download
6.24 KB lrw-r--r-- 2018-03-30 05:53:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).