(uniform-vector-fill!, make-uniform-vector,
authorMarius Vollmer <mvo@zagadka.de>
Sun, 2 Jan 2005 21:00:43 +0000 (21:00 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Sun, 2 Jan 2005 21:00:43 +0000 (21:00 +0000)
make-uniform-array,list->uniform-array): Deprecated for real.

ice-9/arrays.scm

index 5e92a2f..3e92931 100644 (file)
 
 ;; 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)))