зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 04:44:18 +02:00
7 строки
224 B
Plaintext
7 строки
224 B
Plaintext
Memoization:
|
|
|
|
scanl - is similar to foldl, but returns a list of successive reduced values from the left
|
|
scanr - -//- from the right
|
|
Note: usually used for monitoring the fold progress (how many el-s needs to be processed)
|
|
|