(exception:string-contains-nul): New exception pattern.
[bpt/guile.git] / libguile / ramap.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
0527e687
DH
3#ifndef SCM_RAMAP_H
4#define SCM_RAMAP_H
5
2b829bbb 6/* Copyright (C) 1995,1996,1997,2000, 2006 Free Software Foundation, Inc.
0527e687 7 *
73be1d9e
MV
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
0527e687 12 *
73be1d9e 13 * This library is distributed in the hope that it will be useful,
0f2d19dd 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
0527e687 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
92205699 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 21 */
0527e687 22
0f2d19dd
JB
23\f
24
b4309c3c 25#include "libguile/__scm.h"
0f2d19dd
JB
26
27\f
0f2d19dd 28
33b001fd
MV
29SCM_API int scm_ra_matchp (SCM ra0, SCM ras);
30SCM_API int scm_ramapc (int (*cproc) (), SCM data, SCM ra0, SCM lra,
31 const char *what);
32SCM_API int scm_array_fill_int (SCM ra, SCM fill, SCM ignore);
33SCM_API SCM scm_array_fill_x (SCM ra, SCM fill);
34SCM_API SCM scm_array_copy_x (SCM src, SCM dst);
35SCM_API int scm_ra_eqp (SCM ra0, SCM ras);
36SCM_API int scm_ra_lessp (SCM ra0, SCM ras);
37SCM_API int scm_ra_leqp (SCM ra0, SCM ras);
38SCM_API int scm_ra_grp (SCM ra0, SCM ras);
39SCM_API int scm_ra_greqp (SCM ra0, SCM ras);
40SCM_API int scm_ra_sum (SCM ra0, SCM ras);
41SCM_API int scm_ra_difference (SCM ra0, SCM ras);
42SCM_API int scm_ra_product (SCM ra0, SCM ras);
43SCM_API int scm_ra_divide (SCM ra0, SCM ras);
44SCM_API int scm_array_identity (SCM src, SCM dst);
45SCM_API SCM scm_array_map_x (SCM ra0, SCM proc, SCM lra);
46SCM_API SCM scm_array_for_each (SCM proc, SCM ra0, SCM lra);
47SCM_API SCM scm_array_index_map_x (SCM ra, SCM proc);
48SCM_API SCM scm_raequal (SCM ra0, SCM ra1);
49SCM_API SCM scm_array_equal_p (SCM ra0, SCM ra1);
50SCM_API void scm_init_ramap (void);
0f2d19dd 51
0527e687 52#endif /* SCM_RAMAP_H */
89e00824
ML
53
54/*
55 Local Variables:
56 c-file-style: "gnu"
57 End:
58*/