String.Join?
Flithor opened this issue · 2 comments
Issue type:
- ➕ Feature request
Short description:
Same as this:
https://msdn.microsoft.com/en-us/library/57a79xd0%28v=vs.110%29.aspx
Oh, Java 8 was add this method
https://stackoverflow.com/a/22577565/6859121
Why does this need to be a built-in function? It's already possible to use the existing higher-order functions to build something that does this: (separator, value) => reduce(pipe(concat, apply(pipe, apply(concat, separator))), tail(value), head(value))