appendAll
Append all values from the specified builder
Appends multiple key-value pairs to this builder
Return
this builder instance
Parameters
values
the key-value pairs to append
fun StringValuesBuilder.appendAll(vararg values: Pair<String, Iterable<String>>): StringValuesBuilder(source)
Appends multiple key-value pairs where values are Iterable to this builder
Return
this builder instance
Parameters
values
the key-value pairs to append where values are Iterable of strings
fun StringValuesBuilder.appendAll(values: Map<String, Iterable<String>>): StringValuesBuilder(source)
Appends multiple key-value pairs from a Map where values are Iterable to this builder
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
Return
this builder instance
Parameters
values
the map containing key-value pairs to append