for-each
-- r7rs
Definition functor
;
Procedure variants:
((for-each-procedure list |1...|) -> (undefined))
for-each-procedure
;list
;...
-- at least one time;undefined
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(for-each proc list_1 list_2 ...)
Domain: It is an error if
proc
does not accept as many arguments as there arelist
s.The arguments to
for-each
are like the arguments tomap
, butfor-each
callsproc
for its side effects rather than for its values. Unlikemap
,for-each
is guaranteed to callproc
on the elements of thelist
s in order from the first element(s) to the last, and the value returned byfor-each
is unspecified. If more than onelist
is given and not all lists have the same length,for-each
terminates when the shortest list runs out. Thelist
s can be circular, but it is an error if all of them are circular.It is an error for
proc
to mutate any of the lists.(let ((v (make-vector 5))) (for-each (lambda (i) (vector-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.