Package-level declarations

Inherited functions

Link copied to clipboard

Removes the specified string-value (by name) using -= syntax.

Removes the specified string-value (by names) using -= syntax.

operator fun StringValuesBuilder.minusAssign(properties: Iterable<KProperty<*>>)

Removes the specified string-value (by properties) using -= syntax.

operator fun StringValuesBuilder.minusAssign(property: KProperty<*>)

Removes the specified string-value (by property) using -= syntax.

Link copied to clipboard

Adds the specified string-value using += syntax.

Link copied to clipboard
operator fun StringValuesBuilder.set(name: String, values: Iterable<String>)

Sets the specified string-value.

Link copied to clipboard

Sets a string-value via the delegation pattern.

Link copied to clipboard
fun StringValuesBuilder.valueList(name: String? = null, defaultValue: List<String> = emptyList(), clearListOnSet: Boolean = true): ReadWriteProperty<StringValuesBuilder, List<String>?>

Sets a string-value via the delegation pattern.