Created
March 15, 2016 19:23
-
-
Save iArnold/a9e947cee25d73d4c2a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [ "Reduces and joins a block of values." | |
] | |
rejoin: func [ | |
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 | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment