E.g. sometimes this code:
foreach (x in xs) F(x); foreach (x in xs) G(x); foreach (x in xs) H(x);
foreach (x in xs) { F(x); G(x); H(x); }
E.g. sometimes this code:
is faster/more efficient than this: