diff options
author | Daniel Llorens <daniel.llorens@bluewin.ch> | 2015-12-09 12:57:19 +0100 |
---|---|---|
committer | Daniel Llorens <daniel.llorens@bluewin.ch> | 2016-07-11 09:11:50 +0200 |
commit | ffd949e59740745c2b9a9f73dffa70878be0b344 (patch) | |
tree | 15d8f950948fbc642252b19ac0069241231c0b76 /libguile/arrays.h | |
parent | a8dd99d0de8d08bcfb63fa152c81b5cc110640c2 (diff) | |
download | guile-ffd949e59740745c2b9a9f73dffa70878be0b344.tar.gz |
New export (array-for-each-cell-in-order)
* libguile/arrays.h (array-for-each-cell-in-order): Declare.
* libguile/arrays.c (array-for-each-cell-in-order): Define.
Diffstat (limited to 'libguile/arrays.h')
-rw-r--r-- | libguile/arrays.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/arrays.h b/libguile/arrays.h index 5a88b7238..b43e93c29 100644 --- a/libguile/arrays.h +++ b/libguile/arrays.h @@ -53,6 +53,7 @@ SCM_API SCM scm_array_from_s (SCM ra, SCM indices); SCM_API SCM scm_array_from (SCM ra, SCM indices); SCM_API SCM scm_array_amend_x (SCM ra, SCM b, SCM indices); SCM_API SCM scm_array_for_each_cell (SCM frank, SCM op, SCM args); +SCM_API SCM scm_array_for_each_cell_in_order (SCM frank, SCM op, SCM args); SCM_API SCM scm_list_to_array (SCM ndim, SCM lst); SCM_API SCM scm_list_to_typed_array (SCM type, SCM ndim, SCM lst); |