Rebol Programming/collect
USAGE:
editCOLLECT body /into output
DESCRIPTION:
editEvaluates a block, storing values via KEEP function, and returns block of collected values.
COLLECT is a function value.
ARGUMENTS
edit- body -- Block to evaluate (Type: block)
REFINEMENTS
edit- /into -- Insert into a buffer instead (returns position after insert)
- output -- The buffer series (modified) (Type: series)
SOURCE CODE
editcollect: func [ {Evaluates a block, storing values via KEEP function, and returns block of collected values.} body [block!] "Block to evaluate" /into {Insert into a buffer instead (returns position after insert)} output [series!] "The buffer series (modified)" ][ unless output [output: make block! 16] do make function! [keep] copy/deep body make function! [value /only] copy/deep [ output: either only [insert/only output :value] [insert output :value] :value ] either into [output] [head output] ]