|
|
|
|
|
by rtsisyk
4587 days ago
|
|
There is a BIG difference between Lua Fun and Underscore.
Lua Fun is based on iterators. High-order functions such as map, filter, etc. don't create temporary tables and don't allocate extra memory.
Since all operations are performed on the fly during iteration, most expressions use constant amount of memory to evaluate. |
|