vector-for-each
-- r7rs
Definition functor
;
vector-for-each
(from vonuvoli
);Procedure variants:
((for-each-procedure vector |1...|) -> (undefined))
for-each-procedure
;vector
;...
-- at least one time;undefined
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(vector-for-each proc vector_1 vector_2 ...)
Domain: It is an error if
proc
does not accept as many arguments as there arevector
s.The arguments to
vector-for-each
are like the arguments tovector-map
, butvector-for-each
callsproc
for its side effects rather than for its values. Unlikevector-map
,vector-for-each
is guaranteed to callproc
on the elements of thevector
s in order from the first element(s) to the last, and the value returned byvector-for-each
is unspecified. If more than onevector
is given and not all vectors have the same length,vector-for-each
terminates when the shortest vector runs out. It is an error forproc
to mutate any of the vectors.(let ((v (make-list 5))) (vector-for-each (lambda (i) (list-set! v i (* i i))) '#(0 1 2 3 4)) v) ===> (0 1 4 9 16)
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.