string-for-each
-- r7rs
Definition functor
;
string-for-each
(from vonuvoli
);Procedure variants:
((for-each-procedure string |1...|) -> (undefined))
for-each-procedure
;string
;...
-- at least one time;undefined
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(string-for-each proc string_1 string_2 ...)
Domain: It is an error if
proc
does not accept as many arguments as there arestring
s.The arguments to
string-for-each
are like the arguments tostring-map
, butstring-for-each
callsproc
for its side effects rather than for its values. Unlikestring-map
,string-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 bystring-for-each
is unspecified. If more than onestring
is given and not all strings have the same length,string-for-each
terminates when the shortest string runs out. It is an error forproc
to mutate any of the strings.(let ((v '())) (string-for-each (lambda (c) (set! v (cons (char->integer c) v))) "abcde") v) ===> (101 100 99 98 97)
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.