generalized-arrays.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* classes: h_files */
  2. #ifndef SCM_GENERALIZED_ARRAYS_H
  3. #define SCM_GENERALIZED_ARRAYS_H
  4. /* Copyright (C) 1995,1996,1997,1999,2000,2001, 2004, 2006, 2008, 2009, 2013, 2014 Free Software Foundation, Inc.
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public License
  8. * as published by the Free Software Foundation; either version 3 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  19. * 02110-1301 USA
  20. */
  21. #include "libguile/__scm.h"
  22. #include "libguile/array-handle.h"
  23. /* These functions operate on all kinds of arrays that Guile knows about.
  24. */
  25. /** Arrays */
  26. SCM_API int scm_is_array (SCM obj);
  27. SCM_API SCM scm_array_p (SCM v, SCM unused);
  28. SCM_INTERNAL SCM scm_array_p_2 (SCM);
  29. SCM_API int scm_is_typed_array (SCM obj, SCM type);
  30. SCM_API SCM scm_typed_array_p (SCM v, SCM type);
  31. SCM_API size_t scm_c_array_rank (SCM ra);
  32. SCM_API SCM scm_array_rank (SCM ra);
  33. SCM_API size_t scm_c_array_length (SCM ra);
  34. SCM_API SCM scm_array_length (SCM ra);
  35. SCM_API SCM scm_array_dimensions (SCM ra);
  36. SCM_API SCM scm_array_type (SCM ra);
  37. SCM_API SCM scm_array_type_code (SCM ra);
  38. SCM_API SCM scm_array_in_bounds_p (SCM v, SCM args);
  39. SCM_API SCM scm_c_array_ref_1 (SCM v, ssize_t idx0);
  40. SCM_API SCM scm_c_array_ref_2 (SCM v, ssize_t idx0, ssize_t idx1);
  41. SCM_API void scm_c_array_set_1_x (SCM v, SCM obj, ssize_t idx0);
  42. SCM_API void scm_c_array_set_2_x (SCM v, SCM obj, ssize_t idx0, ssize_t idx1);
  43. SCM_API SCM scm_array_ref (SCM v, SCM args);
  44. SCM_API SCM scm_array_set_x (SCM v, SCM obj, SCM args);
  45. SCM_API SCM scm_array_to_list (SCM v);
  46. SCM_INTERNAL void scm_init_generalized_arrays (void);
  47. #endif /* SCM_GENERALIZED_ARRAYS_H */
  48. /*
  49. Local Variables:
  50. c-file-style: "gnu"
  51. End:
  52. */