Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 2.3 KB

File metadata and controls

17 lines (9 loc) · 2.3 KB

subkt / myaa.subkt.tasks / org.gradle.api.provider.HasMultipleValues / invoke

invoke

operator fun <T> HasMultipleValues<T>.invoke(vararg items: T): Unit (source) operator fun <T> HasMultipleValues<T>.invoke(items: Iterable<T>): Unit (source)

Adds all specified items to the list property.

operator fun <T> HasMultipleValues<T>.invoke(items: Provider<out Iterable<T>>): Unit (source)

Adds the output of the given Provider to the list property, evaluated lazily.

operator fun <T> HasMultipleValues<T>.invoke(call: () -> Iterable<T>): Unit (source)

Adds the output of the given closure to the list property, evaluated lazily.