Artifact
24ac2a6c6b058d4552b9c19dcf9bfd6c9b57e48f:
#!r6rs
;; Copyright (c) 2009 Derick Eddington. All rights reserved.
;; Licensed under an MIT-style license. My license is in the file
;; named LICENSE from the original collection this file is distributed
;; with. If this file is redistributed with some other collection, my
;; license must also be included.
(library (srfi s25 multi-dimensional-arrays arlib)
(export
array-shape
array-length
array-size
array-equal?
shape-for-each
array-for-each-index
tabulate-array
tabulate-array!
array-retabulate!
array-map
array-map!
array->vector
array->list
share-array/prefix
share-row
share-column
share-array/origin
share-array/index!
array-append
transpose
share-nths)
(import
(rnrs)
(rnrs r5rs)
(srfi s23 error tricks)
(srfi s25 multi-dimensional-arrays all)
(srfi private include))
(SRFI-23-error->R6RS "(library (srfi s25 multi-dimensional-arrays arlib))"
(include/resolve ("srfi" "s25") "arlib.scm"))
)