2009-07-17 19:05:32 +02:00
|
|
|
|
#ifndef SCM_GENERALIZED_VECTORS_H
|
|
|
|
|
|
#define SCM_GENERALIZED_VECTORS_H
|
|
|
|
|
|
|
2018-06-20 19:17:06 +02:00
|
|
|
|
/* Copyright 1995-1997,1999-2001,2004,2006,2008-2009,2013,2018
|
2018-06-20 20:01:49 +02:00
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
|
|
This file is part of Guile.
|
|
|
|
|
|
|
|
|
|
|
|
Guile is free software: you can redistribute it and/or modify it
|
|
|
|
|
|
under the terms of the GNU Lesser General Public License as published
|
|
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
|
|
Guile is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
|
License along with Guile. If not, see
|
|
|
|
|
|
<https://www.gnu.org/licenses/>. */
|
2009-07-17 19:05:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-06-20 16:33:05 +02:00
|
|
|
|
#include "libguile/snarf.h"
|
2009-07-17 19:05:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Generalized vectors */
|
|
|
|
|
|
|
2009-07-18 12:43:54 +02:00
|
|
|
|
SCM_API SCM scm_make_generalized_vector (SCM type, SCM len, SCM fill);
|
|
|
|
|
|
SCM_INTERNAL void scm_i_register_vector_constructor (SCM type, SCM (*ctor)(SCM, SCM));
|
|
|
|
|
|
|
|
|
|
|
|
#define SCM_VECTOR_IMPLEMENTATION(type, ctor) \
|
|
|
|
|
|
SCM_SNARF_INIT (scm_i_register_vector_constructor \
|
|
|
|
|
|
(scm_i_array_element_types[type], ctor))
|
2009-07-17 19:05:32 +02:00
|
|
|
|
|
|
|
|
|
|
SCM_INTERNAL void scm_init_generalized_vectors (void);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* SCM_GENERALIZED_VECTORS_H */
|