mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
* libguile/__scm.h (scm_print_state, scm_t_dynstack): Add forward declarations. * libguile/_scm.h: Remove threads.h. * libguile/atomic.c: * libguile/bitvectors.h: * libguile/bytevectors.c: * libguile/continuations.h: * libguile/control.c: * libguile/deprecation.c: * libguile/dynl.c: * libguile/dynstack.h: * libguile/dynwind.c: * libguile/extensions.c: * libguile/fdes-finalizers.c: * libguile/foreign-object.c: * libguile/frames.c: * libguile/guardians.c: * libguile/hashtab.c: * libguile/list.c: * libguile/loader.c: * libguile/macros.c: * libguile/memoize.c: * libguile/net_db.c: * libguile/pairs.c: * libguile/procprop.c: * libguile/rdelim.c: * libguile/simpos.c: * libguile/srfi-14.c: * libguile/srfi-60.c: * libguile/strings.c: * libguile/strports.c: * libguile/syntax.c: * libguile/syntax.h: * libguile/unicode.c: * libguile/variable.c: * libguile/vectors.c: * libguile/weak-set.c: * libguile/weak-set.h: * libguile/weak-table.c: * libguile/weak-table.h: * libguile/weak-vector.c: Add threads.h as appropriate, or possible other headers that threads.h pulled in.
69 lines
2.7 KiB
C
69 lines
2.7 KiB
C
/* classes: h_files */
|
||
|
||
#ifndef SCM_WEAK_SET_H
|
||
#define SCM_WEAK_SET_H
|
||
|
||
/* Copyright (C) 2011,2018 Free Software Foundation, Inc.
|
||
*
|
||
* This library 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.
|
||
*
|
||
* This library 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 this library; if not, write to the Free Software
|
||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||
* 02110-1301 USA
|
||
*/
|
||
|
||
|
||
|
||
#include "libguile/__scm.h"
|
||
|
||
|
||
|
||
/* The weak set API is currently only used internally. We could make it
|
||
public later, after some API review. */
|
||
|
||
/* Function that returns nonzero if the given object is the one we are
|
||
looking for. */
|
||
typedef int (*scm_t_set_predicate_fn) (SCM obj, void *closure);
|
||
|
||
/* Function to fold over the elements of a set. */
|
||
typedef SCM (*scm_t_set_fold_fn) (void *closure, SCM key, SCM result);
|
||
|
||
SCM_INTERNAL SCM scm_c_make_weak_set (unsigned long k);
|
||
SCM_INTERNAL SCM scm_weak_set_p (SCM h);
|
||
SCM_INTERNAL SCM scm_c_weak_set_lookup (SCM set, unsigned long raw_hash,
|
||
scm_t_set_predicate_fn pred,
|
||
void *closure, SCM dflt);
|
||
SCM_INTERNAL SCM scm_c_weak_set_add_x (SCM set, unsigned long raw_hash,
|
||
scm_t_set_predicate_fn pred,
|
||
void *closure, SCM obj);
|
||
SCM_INTERNAL void scm_c_weak_set_remove_x (SCM set, unsigned long raw_hash,
|
||
scm_t_set_predicate_fn pred,
|
||
void *closure);
|
||
SCM_INTERNAL SCM scm_weak_set_add_x (SCM set, SCM obj);
|
||
SCM_INTERNAL SCM scm_weak_set_remove_x (SCM set, SCM obj);
|
||
SCM_INTERNAL SCM scm_weak_set_clear_x (SCM set);
|
||
SCM_INTERNAL SCM scm_c_weak_set_fold (scm_t_set_fold_fn proc, void *closure,
|
||
SCM init, SCM set);
|
||
SCM_INTERNAL SCM scm_weak_set_fold (SCM proc, SCM init, SCM set);
|
||
SCM_INTERNAL SCM scm_weak_set_for_each (SCM proc, SCM set);
|
||
SCM_INTERNAL SCM scm_weak_set_map_to_list (SCM proc, SCM set);
|
||
|
||
SCM_INTERNAL void scm_i_weak_set_print (SCM exp, SCM port, scm_print_state *pstate);
|
||
SCM_INTERNAL void scm_init_weak_set (void);
|
||
|
||
#endif /* SCM_WEAK_SET_H */
|
||
|
||
/*
|
||
Local Variables:
|
||
c-file-style: "gnu"
|
||
End:
|
||
*/
|