forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Forall
angerangel edited this page Mar 19, 2013
·
1 revision
FORALL 'word body
Evaluates a block for every value in a series.
FORALL is a native value.
- word -- Word that refers to the series, set to each position in series (word!)
- body -- Block to evaluate each time (block!)
#SOURCE
forall: make native! [ [
"Evaluates a block for every value in a series."
'word [word!] {Word that refers to the series, set to each position in series}
body [block!] "Block to evaluate each time"
] ]