1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 14:21:10 +02:00

(uniform-vector-fill!, make-uniform-vector,

make-uniform-array,list->uniform-array): Deprecated for real.
This commit is contained in:
Marius Vollmer 2005-01-02 21:00:43 +00:00
parent c34e5780b0
commit d030cad861

View file

@ -24,12 +24,14 @@
;; deprecated
(define uniform-vector-fill! array-fill!)
(begin-deprecated
(define make-uniform-vector dimensions->uniform-array)
(define uniform-vector-fill! array-fill!)
(define (make-uniform-array prot . args)
(dimensions->uniform-array args prot))
(define make-uniform-vector dimensions->uniform-array)
(define (list->uniform-vector prot lst)
(list->uniform-array 1 prot lst))
(define (make-uniform-array prot . args)
(dimensions->uniform-array args prot))
(define (list->uniform-vector prot lst)
(list->uniform-array 1 prot lst)))