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?

link|improve this question

80% accept rate
5  
Acme namespace. Why are you expecting sanity? :) – Hugmeir Nov 15 '11 at 4:06
2  
I'd personally use 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
@Hugmeir haha - that's a perfectly valid answer, you should submit it :) – C4H5As Nov 15 '11 at 4:33
feedback

5 Answers

Because they feel like it. There's no real difference. Perl has like a dozen ways to do everything. It's just the way the language is.

link|improve this answer
+1 I always love to hear "why not?". – Josh Nov 15 '11 at 4:03
feedback

One difference is that do { ... } returns a value whereas an if statement doesn't (although see the comments below.)

E.g.:

my $x = 3;
my $z = do { warn "in the do block"; 10 } if $x == 3;

You can accomplish almost the same thing with the ternary operator, although you can't sequence statements inside the branches of the ternary operator.

link|improve this answer
1  
if statements do too return values. You just can't assign them directly due to the syntax being a little tricky. But if you embed it properly, you can see that the if is returning a value. Here's an equivalent piece of code: my $z = do { if ($x==3) { warn "in the do block";10 } } Your code is more succinct, though, so I still think it's a reasonable answer, just not entirely technically correct. – Keith Irwin Nov 15 '11 at 7:30
I agree - that's a more correct way of looking at the situation. – user5402 Nov 18 '11 at 2:15
feedback

Because in perl "There's more than one way to do it"

link|improve this answer
feedback

To me, it seems like a way to emphasize the code inside the if more than the if condition itself.

link|improve this answer
feedback

The author wanted to use the if at the end, but it has to be at the end of one statement not many. A do {} is one statement, so that will work.

Personally, I would use an if statement, but it is a matter of taste whether the emphasis should be on the action or the condition. In this case the author chose to emphasize the action.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.