appendTo

fun <T> Iterable<T>.appendTo(    builder: QueryBuilder,     separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     transform: QueryBuilder.(T) -> Unit): QueryBuilder

Appends all the elements separated using separator and using the given prefix and postfix if supplied.