for_let
That one syntax sugar library you (may have) wished you wrote yourself.
This library provides the for_let! macro, so you can write code like this:
for_let!;
Which is just sugar for this:
for el in iteratee
Accepts all patterns that are legal in a match arm. How Pythonic!