1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-21 12:10:26 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2004-12-06 00:47:07 +00:00
parent 161308d88d
commit d17d824af6
2 changed files with 20 additions and 0 deletions

View file

@ -1,6 +1,20 @@
2004-12-06 Kevin Ryde <user42@zip.com.au>
* srfi-1.scm (alist-copy, alist-delete, break, delete,
delete-duplicates, map, map!, partition, span): Change to
tail-recursive forms.
* srfi-1.scm (delete-duplicates): Remove unused extra copy of this
routine.
* srfi-1.scm (alist-delete): Correction to equality proc call argument
order, spec is for given KEY param first.
2004-12-05 Kevin Ryde <user42@zip.com.au>
* srfi-1.scm (count, filter-map): Change to a tail-recursive form.
(append-map, append-map!): Rewrite as simple "concatenate map" forms,
for tail recursiveness.
2004-11-11 Rob Browning <rlb@defaultvalue.org>

View file

@ -1,3 +1,9 @@
2004-12-06 Kevin Ryde <user42@zip.com.au>
* tests/srfi-1.test (alist-copy, alist-delete, break, delete, delete!,
map, map!, span): New tests.
(partition): New tests, by Matthias Koeppe.
2004-12-05 Kevin Ryde <user42@zip.com.au>
* tests/srfi-1.test (append-map, count, filter-map): New tests.