X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/15c3c1b34a2b34773d8ca4c67a8f8698ed8f310d..ae48ceadbe58905cc69e046c2182e5bb83bf305f:/perl.inc.pl?ds=inline diff --git a/perl.inc.pl b/perl.inc.pl index e010b26..f6f2b3f 100644 --- a/perl.inc.pl +++ b/perl.inc.pl @@ -225,7 +225,7 @@ my $wbr = "\N{ZERO WIDTH SPACE}"; v5.20 => { new => [ - ['sub ($var)', 'subroutine signatures', {feature => 'signatures', experimental => 'signatures', stable => v5.36}], + ['sub ($var)', 'subroutine signatures', {feature => 'signatures', experimental => 'signatures', stable => v5.36, bundle => 0}], ['%hash{…}', 'hash slices return key+value pairs'], ['[]->@*', 'postfix dereferencing (also e.g. $scalar->$* for $$scalar)', {feature => 'postderef, postderef_qq', experimental => 'postderef', stable => v5.23.1}], [q"use warnings 'once'; $a", 'variables $a and $b are exempt from used once warnings'], @@ -336,11 +336,11 @@ my $wbr = "\N{ZERO WIDTH SPACE}"; v5.32 => { new => [ - ['isa', 'infix operator to check class instance', {feature => 'isa', experimental => 'isa', stable => v5.36}], + ['isa', 'infix operator to check class instance', {feature => 'isa', experimental => 'isa', stable => v5.36, bundle => 0}], ['$min < $_ <= $max', 'chained comparison repeats inner part as $min < $_ and $_ <= $max'], ['/\p{Name=$var}/', 'match Unicode Name property like \N{} but with interpolation and subpatterns'], [q"open F, '+>>', undef", 'respect append mode on temporary files with mixed access'], - ["no feature 'indirect'", 'disable indirect object notation such as new Class instead of Class->new, enforced since use 5.36', {name => 'indirect'}], + ["no feature 'indirect'", 'disable indirect object notation such as new Class instead of Class->new', {name => 'indirect', bundle => v5.36}], ['streamzip', 'program distributed with core IO::Compress::Base to compress stdin into a zip container'], ], unicode => '13.0', @@ -358,12 +358,12 @@ my $wbr = "\N{ZERO WIDTH SPACE}"; v5.34 => { new => [ - ['try {} catch', 'exception handling similar to eval blocks', {feature => 'try', experimental => 'try', stable => v5.40}], + ['try {} catch', 'exception handling similar to eval blocks', {feature => 'try', experimental => 'try', stable => v5.40, bundle => 0}], ['/{,n}/', 'empty lower bound quantifier is accepted as shorthand for 0'], ['\x{ … }', 'insignificant space within curly braces, also for \b{}, \g{}, \k{}, \N{}, \o{} as well as /{m,n}/ quantifiers'], ['0o0', 'octal prefix 0o alternative to 0… and oct'], ["re::optimization(${wbr}qr//)", 'debug regular expression optimization information discovered at compile time'], - ['no feature …', 'disable discouraged practices of multidimensional and bareword_filehandles array emulation, applied in 5.36 and 5.38', {name => 'feature_534'}], + ['no feature …', 'disable discouraged practices of multidimensional and bareword_filehandles array emulation', {name => 'feature_534', bundle => [v5.36, v5.38]}], ], release => '2021-05-20', distro => { @@ -375,7 +375,7 @@ my $wbr = "\N{ZERO WIDTH SPACE}"; v5.36 => { new => [ ['use v5.36', q{use warnings; use feature qw'signatures isa'; no feature qw'indirect multidimensional switch'}], - ['use builtin', 'namespace for interpreter functions, such as weaken and blessed from Scalar::Util, ceil/floor from POSIX, and trim like String::Util', {experimental => 'builtin', stable => v5.40}], + ['use builtin', 'namespace for interpreter functions, such as weaken and blessed from Scalar::Util, ceil/floor from POSIX, and trim like String::Util', {experimental => 'builtin', stable => v5.40, bundle => 0}], ['is_bool(!0)', 'distinguish scalar variable types (by builtin functions) for data interoperability', {name => 'is_bool'}], ['for my ($k, $v) (%hash)', 'iterate over multiple values at a time (including builtin::indexed for arrays)', {experimental => 'for_list', feature => 'for_list', stable => v5.40}], ['defer {}', 'queue code to be executed when going out of scope', {feature => 'defer', experimental => 'defer'}], @@ -395,7 +395,7 @@ my $wbr = "\N{ZERO WIDTH SPACE}"; v5.38 => { new => [ - ['use feature "module_true"', 'default in use 5.37 and up, also no feature "bareword_filehandles"'], + ['use feature "module_true"', 'packages implicitly return true, enabled along with no feature "bareword_filehandles"', {name => 'module_true', bundle => 0}], ['sub ($var ||= default)', 'assign values when false (or undefined on //=) instead of omitted'], ['/(*{ … })/', 'optimistic eval: (?{ … }) with regex optimisations enabled'], ['class', "define object classes: packages with field variables and method subroutines", {feature => 'class', experimental => 'class'}], @@ -412,7 +412,7 @@ my $wbr = "\N{ZERO WIDTH SPACE}"; v5.40 => { new => [ ['use v5.40', 'import builtin functions and enable the try feature'], - ['__CLASS__', 'keyword to reference to the current class name, similar to __PACKAGE__', {feature => 'class'}], + ['__CLASS__', 'keyword to reference to the current class name, similar to __PACKAGE__', {feature => 'class', name => 'class_ref'}], [':reader', 'attribute for field variables to create corresponding accessor methods', {feature => 'class'}], ['^^', 'higher precedence logical xor operator, as || is to or'], ['perl -M â€¦', 'whitespace allowed after -M options', {dropped => 0}],