1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 17:20:29 +02:00

* unif.c, unif.h (shared-array-root, shared-array-offset,

shared-array-increments): New primitives.
This commit is contained in:
Mikael Djurfeldt 2000-04-13 03:44:51 +00:00
parent a401a730c9
commit e2d373365b
2 changed files with 49 additions and 3 deletions

View file

@ -101,6 +101,9 @@ extern SCM scm_uniform_vector_length (SCM v);
extern SCM scm_array_p (SCM v, SCM prot);
extern SCM scm_array_rank (SCM ra);
extern SCM scm_array_dimensions (SCM ra);
extern SCM scm_shared_array_root (SCM ra);
extern SCM scm_shared_array_offset (SCM ra);
extern SCM scm_shared_array_increments (SCM ra);
extern long scm_aind (SCM ra, SCM args, const char *what);
extern SCM scm_make_ra (int ndim);
extern SCM scm_shap2ra (SCM args, const char *what);