|
|
|
|
|
by drostie
3652 days ago
|
|
Python 3 at least changes the semantics of map and filter so that they are generators. Lazy sequences are the sort of thing that you don't care about until you need to process a ten-million-line file (or whatever) and suddenly find that your program is slowing down for pointless memory allocations up-front -- then they become unbelievably important. |
|