Artifact
90fcd2d06d6043f97888c3636fc4902d0d3e5b9b:
#!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)
(export
array?
make-array
shape
array
array-rank
array-start
array-end
array-ref
array-set!
share-array)
(import
(srfi s25 multi-dimensional-arrays all))
)