Returns a collector that returns a string of all entries in the Iterable joined together seperated a given string.
Type of items in the source.
String to separate the entries.
Collector that returns a string of all entries in the Iterable joined together seperated a given string.
const result = joinAsync(",")("hello");console.log(result); // "hello" Copy
const result = joinAsync(",")("hello");console.log(result); // "hello"
Returns a collector that returns a string of all entries in the Iterable joined together seperated a given string.