in reply to Re^3: Conditional Elimination
in thread Conditional Elimination
But the most important thing is to put the condition in a sub so that it's easier to understand.How does that magic work? You're still have the same tests. Personally, I find:
easier to understand thenif (bunch of clauses) { code }
specially when it comes to better understanding of the clauses.if (pointer-where-to-find-clauses) { code }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Conditional Elimination
by dsheroh (Monsignor) on Aug 31, 2011 at 09:03 UTC | |
by JavaFan (Canon) on Aug 31, 2011 at 12:13 UTC | |
by shawnhcorey (Friar) on Aug 31, 2011 at 14:24 UTC | |
Re^5: Conditional Elimination
by shawnhcorey (Friar) on Aug 31, 2011 at 14:21 UTC |