forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Rejoin
angerangel edited this page Mar 19, 2013
·
1 revision
REJOIN block
Reduces and joins a block of values.
REJOIN is a function value.
- block -- Values to reduce and join (block!)
#SOURCE
rejoin: make function! [ [
"Reduces and joins a block of values."
block [block!] "Values to reduce and join"
][
if empty? block: reduce block [return block]
append either series? first block [copy first block] [
form first block
] next block
] ]