A couple of additions to perl5120delta
Vincent Pit [Wed, 17 Mar 2010 21:28:53 +0000 (22:28 +0100)]
pod/perl5120delta.pod

index 78c5a44..49f8062 100644 (file)
@@ -199,6 +199,10 @@ on how to specify C<configure_requires> when creating a distribution for CPAN.
 
 The C<each> function can now operate on arrays.
 
+=head2 C<when> as a statement modifier
+
+C<when> is now allowed to be used as a statement modifier.
+
 =head2 C<$,> flexibility
 
 The variable C<$,> may now be tied.
@@ -1511,6 +1515,11 @@ C<if (%foo)> has been optimized to be faster than C<if (keys %foo)>.
 
 =item *
 
+The string repetition operator (C<$str x $num>) is now several times faster
+when C<$str> has length one or C<$num> is large.
+
+=item *
+
 Reversing an array to itself (as in C<@a = reverse @a>) in void context
 now happens in-place and is several orders of magnitude faster than it
 used to be. It will also preserve non-existent elements whenever