26 May
2010
26 May
'10
4:20 p.m.
Hello all, Does anyone have a generator that allows for iteration on multiple lists sequentially without creating a single list. I'm doing this alot: (iter (for el in (append list1 list2 list3))) when the APPEND is really not necessary with a sufficiently smart generator like: (iter (for el in list then list2 then list3))) ? Thank you, Will