appendAll

Append all values from the specified builder

Report a problem


Appends multiple key-value pairs to this builder

Report a problem

Return

this builder instance

Parameters

values

the key-value pairs to append


@JvmName(name = "appendAllIterable")
fun StringValuesBuilder.appendAll(vararg values: Pair<String, Iterable<String>>): StringValuesBuilder(source)

Appends multiple key-value pairs where values are Iterable to this builder

Report a problem

Return

this builder instance

Parameters

values

the key-value pairs to append where values are Iterable of strings


Appends multiple key-value pairs from a Map where values are Iterable to this builder

Report a problem

Return

this builder instance

Parameters

values

the map containing key-value pairs to append where values are Iterable of strings


Appends multiple key-value pairs from a Map to this builder

Report a problem

Return

this builder instance

Parameters

values

the map containing key-value pairs to append