http://www.perlmonks.org?node_id=513340


in reply to Re^2: An eighth use of local
in thread An eighth use of local

It's a special case of something that's unmentioned: creating temporary values in aggregates.

That's a great point. If you missed it, consider this:

my $item = 'wibble'; my @things = qw /foo bar baz/; local $things[1] = 'qux'; # Legal local $item = 'wobble'; # Dies with 'Can't localize lexical variable + $item'

-xdg

Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.