inline fun <T> Sequence<T>.joinToString(separator: String, append: (it: T, StringBuilder) -> Unit): String
Joins all elements of this Sequence by calling append and separates the elements with the given separator.