From: Jesse Luehrs Date: Tue, 18 Aug 2009 08:31:54 +0000 (-0500) Subject: update ::Delta for the recent changes X-Git-Tag: 0.89_02~57 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=28b961420dcfd74452427a0e9c18d2d9b8c28fda;p=gitmo%2FMoose.git update ::Delta for the recent changes --- diff --git a/lib/Moose/Manual/Delta.pod b/lib/Moose/Manual/Delta.pod index ec22c54..44b32f9 100644 --- a/lib/Moose/Manual/Delta.pod +++ b/lib/Moose/Manual/Delta.pod @@ -46,6 +46,21 @@ Previously, the C method provided by Arrays and Hashes returned true if the attribute was B empty (no elements). Now it returns true if the attribute B empty. +=item C was renamed to C, and C was renamed to C + +L refers to the functionality that we used to provide under C +as L, so that will likely be more familiar (and will +fit in better if we decide to add more List::Util functions). C is an +obvious choice to replace what used to be called C. + +=item Helpers that take a coderef of one argument now use C<$_> + +Subroutines passed as the first argument to C, C, and C now +receive their argument in C<$_> rather than as a parameter to the subroutine. +Helpers that take a coderef of two or more arguments remain using the argument +list (there are technical limitations to using C<$a> and C<$b> like C +does). + =back See L for the new documentation.