diff options
author | Leah Neukirchen <leah@vuxu.org> | 2022-10-14 22:22:03 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2022-10-14 22:22:03 +0200 |
commit | cfa11944645b422138a22ce193d40cf7530bd0c8 (patch) | |
tree | 5544c92f3de5ea3d6ec08e4ebaac653748a0496b /mew.svnwiki | |
parent | ca6b4e56ec12d242ce91ff9b039434980e8ea90b (diff) | |
download | mew-cfa11944645b422138a22ce193d40cf7530bd0c8.tar.gz mew-cfa11944645b422138a22ce193d40cf7530bd0c8.tar.xz mew-cfa11944645b422138a22ce193d40cf7530bd0c8.zip |
into: support multiple generators
Diffstat (limited to 'mew.svnwiki')
-rw-r--r-- | mew.svnwiki | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mew.svnwiki b/mew.svnwiki index f824a7b..89b9d56 100644 --- a/mew.svnwiki +++ b/mew.svnwiki @@ -214,9 +214,9 @@ a value {{equal?}} to the preceding one, then stops. Run the generator {{<gen>}} until it stops and return its final value. -<procedure>(into <acc> <gen>)</procedure> +<procedure>(into <acc> <gen>...)</procedure> -Feed all elements of the generator {{<gen>}} into the accumulator {{<acc>}}. +Feed all elements of the generators {{<gen>}} into the accumulator {{<acc>}}. Uses {{gen}} to convert {{<gen>}} into a generator. If {{<acc>}} is a list/vector/hash-table/string, accumulate into a corresponding accumulator initialized to {{<acc>}}. |