diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-10-31 13:29:25 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-10-31 13:29:25 +0000 |
commit | d41b3904a1147dfa6b0c4eb99cd83f29710a38e9 (patch) | |
tree | 1a9e1ab83d33c9c45f91f504875a0cfd2fb00f8a | |
parent | 4ecb84284bb34d008c7191281974f46a3d8c6594 (diff) | |
download | guile-d41b3904a1147dfa6b0c4eb99cd83f29710a38e9.tar.gz |
Documented serial-map and sequence->list.
-rw-r--r-- | NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -16,6 +16,15 @@ next read operation will work on the pushed back characters. If unread-char is called multiple times, the unread characters will be read again in last-in first-out order. +** New function: serial-map PROC LIST1 LIST2 ... +Version of `map' which guarantees that the procedure is applied to the +lists in serial order. + +** New syntax: sequence->list BODY1 ... +Version of `begin' which returns a list of the results of the body +forms instead of the result of the last body form. In contrast to +`begin', sequence->list allows an empty body. + * Changes to the gh_ interface ** gh_scm2doubles |