plusAssign

operator fun ERROR CLASS: Symbol not found for ConfigurableFileCollection.plusAssign(fileCollection: ERROR CLASS: Symbol not found for FileCollection)(source)

Appends the given file collection to this file collection. This is the same as calling ConfigurableFileCollection.from.

Since

9.6.0

See also

ConfigurableFileCollection.from

operator fun <T : Any> ERROR CLASS: Symbol not found for HasMultipleValues<T>.plusAssign(element: T)(source)

Adds an element to the property value.

Since

9.6.0

See also

HasMultipleValues.add

@JvmName(name = "plusAssignElementProvider")
operator fun <T : Any> ERROR CLASS: Symbol not found for HasMultipleValues<T>.plusAssign(provider: ERROR CLASS: Symbol not found for Provider<out T>)(source)

Adds an element to the property value.

The given provider will be queried when the value of this property is queried. Adding a provider with no value discards the value of the whole property.

Since

9.6.0

See also

HasMultipleValues.add

operator fun <T : Any> ERROR CLASS: Symbol not found for HasMultipleValues<T>.plusAssign(elements: Iterable<T>)(source)

Adds zero or more elements to the property value.

The given iterable will be queried when the value of this property is queried.

Since

9.6.0

See also

HasMultipleValues.addAll

operator fun <T : Any> ERROR CLASS: Symbol not found for HasMultipleValues<T>.plusAssign(elements: Array<T>)(source)

Adds zero or more elements to the property value.

Since

9.6.0

See also

HasMultipleValues.addAll

@JvmName(name = "plusAssignElementsProvider")
operator fun <T : Any> ERROR CLASS: Symbol not found for HasMultipleValues<T>.plusAssign(provider: ERROR CLASS: Symbol not found for Provider<out kotlin/collections/Iterable<T>>)(source)

Adds zero or more elements to the property value.

The given provider will be queried when the value of this property is queried.

Adding a provider with no value discards the value of the whole property.

Since

9.6.0

See also

HasMultipleValues.addAll

operator fun <K : Any, V : Any> ERROR CLASS: Symbol not found for MapProperty<K, V>.plusAssign(value: Pair<K, V>)(source)

Adds a map entry to the property value.

Since

9.6.0

See also

MapProperty.put

@JvmName(name = "plusAssignElementProvider")
operator fun <K : Any, V : Any> ERROR CLASS: Symbol not found for MapProperty<K, V>.plusAssign(value: ERROR CLASS: Symbol not found for Provider<out kotlin/Pair<K, V>>)(source)

Adds a map entry to the property value.

The given provider will be queried when the value of this property is queried. Adding a provider with no value discards the value of the whole property.

Since

9.6.0

See also

MapProperty.put

operator fun <K : Any, V : Any> ERROR CLASS: Symbol not found for MapProperty<K, V>.plusAssign(value: Map<out K, V>)(source)

Adds all entries from another Map to the property value.

Since

9.6.0

See also

MapProperty.putAll

@JvmName(name = "plusAssignElementsProvider")
operator fun <K : Any, V : Any> ERROR CLASS: Symbol not found for MapProperty<K, V>.plusAssign(value: ERROR CLASS: Symbol not found for Provider<out kotlin/collections/Map<out K, V>>)(source)

Adds all entries from another Map to the property value.

The given provider will be queried when the value of this property is queried. Adding a provider with no value discards the value of the whole property.

Since

9.6.0

See also

MapProperty.putAll