From 45d44bdeb5060d92738201041e1aea8308544d04 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 16 Mar 2021 04:48:05 +0100 Subject: [PATCH] perl: v5.32 release and additional features --- perl.inc.pl | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/perl.inc.pl b/perl.inc.pl index 63e3e7b..892112d 100644 --- a/perl.inc.pl +++ b/perl.inc.pl @@ -80,9 +80,11 @@ use utf8; ['given', 'switch statement to smart-match with when/default', {feature => 'switch', experimental => 'smartmatch'}], ['/(?<name>)/', 'named capture buffers into %+'], ['/(?1)/', 'recursive regular expression patterns'], + ['/(?|)/', 'resets capture numbering for each contained branch'], ['/.++/', 'possessive quantifiers ?+, *+, ++ to match greedily'], ['s/keep\K//', 'floating positive lookbehind, efficient alternative for s/(keep)/$1/'], - ['/\v/, /\h/', 'vertical and horizontal whitespace escapes'], + ['/p', 'optionally preserve ${^MATCH} variables (avoiding $& penalty until COW in v5.20)'], + ['/\v/, /\h/', 'vertical and horizontal whitespace escapes (\V \H to invert); also /\R/ for newlines'], ['my $_', 'lexically scoped version of the default variable', {experimental => 'lexical_topic', dropped => v5.23.4}], ['state', 'persistent my variables', {feature => 'state'}], ], @@ -120,11 +122,13 @@ use utf8; v5.14 => { new => [ ['s///r', 'non-destructive substitution'], - ['/(?^)/', 'construct to reset to default modifiers'], ['/(?{ m() })/', 'regular expressions can be nested in /(?{})/ and /(??{})/', {experimental => 0, stable => v5.20}], + ['/dalu', 'regexp modifiers to restrict character classes: either default, ascii, locale, or unicode semantics.'], [q"use re '/flags'", 'customise default modifiers'], + ['/(?^)/', 'construct to reset to default modifiers'], ['each $ref e.a.', 'array and hash container functions accept references', {experimental => 'postderef', dropped => v5.23.1}], ['FH->method', 'filehandle method calls load IO::File on demand (eg. STDOUT->flush)'], + ['\o{}', 'escape sequence for octal values beyond \777'], ], release => '2011-05-14', distro => { @@ -195,6 +199,7 @@ use utf8; ['&.', '& | ^ ~ consistently numeric, dotted operators for strings', {feature => 'bitwise', experimental => 'bitwise', stable => v5.28}], [q"use re 'strict'", 'apply stricter syntax rules to regular expression patterns', {experimental => 're_strict'}], ['0x.beep+0', q"hexadecimal floating point notation with binary power; printf '%a' to display"], + ['??', 'single match shorthand (deprecated since v5.14) requires the operator m?PATTERN?'], ], unicode => '7.0', release => '2015-06-01', @@ -260,10 +265,14 @@ use utf8; v5.32 => { new => [ ['isa', 'infix operator to check class instance'], + ['$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'], - ['streamzip', 'program distributed with core IO::Compress::Base'], + ["no feature 'indirect'", 'disable indirect object notation such as new Class instead of Class->new'], + ['streamzip', 'program distributed with core IO::Compress::Base to compress stdin into a zip container'], ], - # https://www.effectiveperlprogramming.com/2020/01/perl-v5-32-new-features/ unicode => '13.0', + release => '2020-06-20', + details => 'https://www.effectiveperlprogramming.com/2020/01/perl-v5-32-new-features/', }, } -- 2.30.0