You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
angerangel edited this page Mar 19, 2013
·
1 revision
USAGE
REJOIN block
DESCRIPTION
Reduces and joins a block of values.
REJOIN is a function value.
ARGUMENTS
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
] ]