deprecated eval-when situations
[bpt/guile.git] / libguile / vectors.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
dcb410ec
DH
3#ifndef SCM_VECTORS_H
4#define SCM_VECTORS_H
dee01b01 5
a32488ba 6/* Copyright (C) 1995,1996,1998,2000,2001,2002,2004,2005, 2006, 2008, 2009, 2011, 2014 Free Software Foundation, Inc.
dee01b01 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
dee01b01 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * 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.
dee01b01 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
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
d3a6bc94 23
0f2d19dd
JB
24\f
25
b4309c3c 26#include "libguile/__scm.h"
0f2d19dd
JB
27
28\f
29
33b001fd
MV
30SCM_API SCM scm_vector_p (SCM x);
31SCM_API SCM scm_vector_length (SCM v);
32SCM_API SCM scm_vector (SCM l);
33SCM_API SCM scm_vector_ref (SCM v, SCM k);
34SCM_API SCM scm_vector_set_x (SCM v, SCM k, SCM obj);
35SCM_API SCM scm_make_vector (SCM k, SCM fill);
36SCM_API SCM scm_vector_to_list (SCM v);
37SCM_API SCM scm_vector_fill_x (SCM v, SCM fill_x);
33b001fd
MV
38SCM_API SCM scm_vector_move_left_x (SCM vec1, SCM start1, SCM end1,
39 SCM vec2, SCM start2);
40SCM_API SCM scm_vector_move_right_x (SCM vec1, SCM start1, SCM end1,
41 SCM vec2, SCM start2);
6e708ef2 42SCM_API SCM scm_vector_copy (SCM vec);
88797580
MV
43
44SCM_API int scm_is_vector (SCM obj);
6e708ef2 45SCM_API int scm_is_simple_vector (SCM obj);
88797580
MV
46SCM_API SCM scm_c_make_vector (size_t len, SCM fill);
47SCM_API size_t scm_c_vector_length (SCM vec);
48SCM_API SCM scm_c_vector_ref (SCM vec, size_t k);
de5c0f58 49SCM_API void scm_c_vector_set_x (SCM vec, size_t k, SCM obj);
354116f7
MV
50SCM_API const SCM *scm_vector_elements (SCM vec,
51 scm_t_array_handle *h,
52 size_t *lenp, ssize_t *incp);
53SCM_API SCM *scm_vector_writable_elements (SCM vec,
54 scm_t_array_handle *h,
55 size_t *lenp, ssize_t *incp);
6e708ef2
MV
56
57/* Fast, non-checking accessors for simple vectors.
58 */
59#define SCM_SIMPLE_VECTOR_LENGTH(x) SCM_I_VECTOR_LENGTH(x)
60#define SCM_SIMPLE_VECTOR_REF(x,idx) ((SCM_I_VECTOR_ELTS(x))[idx])
61#define SCM_SIMPLE_VECTOR_SET(x,idx,val) ((SCM_I_VECTOR_WELTS(x))[idx]=(val))
88797580 62
ed7e0765 63\f
6e708ef2
MV
64/* Internals */
65
a32488ba 66#define SCM_I_IS_VECTOR(x) (SCM_HAS_TYP7 (x, scm_tc7_vector))
ed7e0765 67#define SCM_I_VECTOR_ELTS(x) ((const SCM *) SCM_I_VECTOR_WELTS (x))
a141db86 68#define SCM_I_VECTOR_WELTS(x) (SCM_CELL_OBJECT_LOC (x, 1))
6e708ef2
MV
69#define SCM_I_VECTOR_LENGTH(x) (((size_t) SCM_CELL_WORD_0 (x)) >> 8)
70
102dbb6f 71SCM_INTERNAL SCM scm_i_vector_equal_p (SCM x, SCM y);
6e708ef2 72
6e708ef2 73
102dbb6f 74SCM_INTERNAL void scm_init_vectors (void);
0f2d19dd 75
dcb410ec 76#endif /* SCM_VECTORS_H */
89e00824
ML
77
78/*
79 Local Variables:
80 c-file-style: "gnu"
81 End:
82*/