In Perl, is it possible to arbitrarily end a map execution, e.g. something equivalent to last in a loop?
It would be a bit like this:
map {
if (test == true) { last; } dosomething
} @myarray
|
|
Nope. You can't Having said that, the code snippet in the question is poor practice because Here's a better way to write it if you really must inline it (modified after ysth's comment):
|
|||||||||||||||
|
|
No. Use an ordinal Since 5.8.1, map is context aware - in void context, no lists are constructed. Anyway, map is generally used to get a list from another list, evaluating expr for each element of the original list. |
||||
|
|
|
You could use a do-block with a for statement modifier:
Though using a foreach block would probably be clearer, and future maintainers of your code will thank you.
|
|||
|
|
|
You can use a long jump (
But as Zaid said, using a |
|||||||
|
|
You want a for loop:
It does the same thing. |
|||
|
|
|
There are map-like constructs that do exactly what you want to do. Take a look at List::Util and List::MoreUtils (conveniently also packaged together as List::AllUtils):
If you don't want to extract an element(s) from the list, then use foreach, as per the previous answers. |
|||
|
|