1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-14 23:50:19 +02:00

* srfi-1.scm: Load srfi-1 extension.

(map, map-in-order, for-each, member, assoc): Replaced by
primitives in srfi-1.c.
(map1): Defined as `map'.
This commit is contained in:
Mikael Djurfeldt 2002-12-01 13:56:11 +00:00
parent ee6aac9733
commit 7692d26b31
4 changed files with 41 additions and 25 deletions

View file

@ -58,9 +58,10 @@
# define SCM_SRFI1_API extern
#endif
SCM_API SCM scm_srfi1_map (SCM proc, SCM arg1, SCM args);
SCM_API SCM scm_srfi1_for_each (SCM proc, SCM arg1, SCM args);
SCM_SRFI1_API SCM scm_srfi1_map (SCM proc, SCM arg1, SCM args);
SCM_SRFI1_API SCM scm_srfi1_for_each (SCM proc, SCM arg1, SCM args);
SCM_SRFI1_API SCM scm_srfi1_member (SCM obj, SCM ls, SCM pred);
SCM_SRFI1_API SCM scm_srfi1_assoc (SCM key, SCM alist, SCM pred);
SCM_SRFI1_API void scm_init_srfi_1 (void);