While browsing CPAN, I came across a block of code in this module that stumped me.
sub import {
for my $mod (keys %INC) {
do {
delete $INC{$mod};
$mod =~ s/\.pm$//; $mod =~ s/\//::/g;
delete_package($mod);
} if $mod =~ m/^SOAP/;
}
}
Why would the author use a do {} if block instead of a regular if block?
for my $mod (keys %INC) { next if $mod !~ /^SOAP/; ... }. Specifies the criteria for the loop up front, and avoids a level of indent as a bonus. – ikegami Nov 15 '11 at 4:17