=
div>
I do. They couple the idea of an iterable with a looping construct=
, and such coupling is bad for various reasons:
- Coupling of unr=
elated entities is always an antipattern.
- For N iterables and M=
looping constructs, you need to implement N*M integrations.
Inst=
ead this should use an iterable, e.g. a generator function (iter-defun). cl=
-loop supports these out of the box.