StringJoin
Generated from the engine's own definition: compute-engine's symbol, which we neither extend nor document by hand. No examples yet — the crosswalk is the reason it has a page.
StringJoin(xs): join the elements of the finite collection `xs` (strings or characters) into a string. StringJoin(xs, sep): the same, with `sep` between consecutive elements. The inverse of StringSplit. An empty collection joins to "", a one-element collection to that element. A non-text element, or a non-finite collection, leaves the expression unevaluated. For variadic concatenation use Join(a, b, …) or string interpolation.
StringJoin(collection<character | string>, separator: string?) -> stringas compute-engine declares it