Have you considered using else instead of break?
The break is going to make it harder to maintain, unless you heavily comment your code. Especially as this is not what you are actually doing with these lines but simplied to illistratrate your point, which will effective hide the break within your code.
Using an else there instead will slow your script slightly for the additional check on every line, though the increase in maintainability might be well worth the cost.