Hi,
I've got a bit of a problem :/
Basically, I'm looping a hashref with;
However, if you do;
Basically, I just need to know what the map{} equivilant of "next" is?
TIA
Andy
I've got a bit of a problem :/
Basically, I'm looping a hashref with;
Code:
map {
...
} keys %$var;
However, if you do;
Code:
map {
.. do something
if (something) {
next;
}
} keys %$var;
Basically, I just need to know what the map{} equivilant of "next" is?
TIA
Andy