static String join({required Iterable iter, String char = ''}) { return iter.join(char) + (iter.length != 0 ? char : ''); }