in reply to Re^3: Reassigning $_ in loop doesn't stick
in thread Reassigning $_ in loop doesn't stick
The post to which you replied discusses whether map returns aliases or not. This is not related to whether map operates on an alias when executing the code block.
What version of perl is this and why doesn't it agree with the documentation
The docs (for 5.10.0) specify that grep returns aliases, but they are silent on whether map returns aliases or not.
Confirmed with 5.10.0 that map aliases not copies
Your snippet discards the return value of map without checking whether it's an alias or not.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Reassigning $_ in loop doesn't stick
by Limbic~Region (Chancellor) on Jan 21, 2009 at 23:58 UTC | |
by ikegami (Patriarch) on Jan 22, 2009 at 05:19 UTC |