Perldelta for Dave's short-circuit optimization
authorSteffen Mueller <smueller@cpan.org>
Thu, 14 Jul 2011 17:25:02 +0000 (19:25 +0200)
committerSteffen Mueller <smueller@cpan.org>
Thu, 14 Jul 2011 17:25:02 +0000 (19:25 +0200)
pod/perldelta.pod

index d3bab27..9c65028 100644 (file)
@@ -106,6 +106,12 @@ may well be none in a stable release.
 
 =item *
 
+The short-circuiting operators C<&&>, C<||>, and C<//> are now
+considerably faster in the short-circuiting case due to reduced
+OP-tree traversal.
+
+=item *
+
 The implementation of C<s///r> makes one less copy of the scalar's value.
 
 =item *