< Rebol Programming
USAGE:
REMOVE-EACH 'word data body
DESCRIPTION:
Removes a value from a series for each block that returns TRUE.
REMOVE-EACH is a native value.
ARGUMENTS
- word -- Word or block of words to set each time (will be local) (Type: get-word word block)
- data -- The series to traverse (Type: series)
- body -- Block to evaluate. Return TRUE to remove. (Type: block)
SOURCE CODE
remove-each: native[
{Removes a value from a series for each block that returns TRUE.}
'word [get-word! word! block!] {Word or block of words to set each time (will be local)}
data [series!] "The series to traverse"
body [block!] "Block to evaluate. Return TRUE to remove."
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.