subkt / myaa.subkt.tasks / org.gradle.api.provider.HasMultipleValues
Name | Summary |
---|---|
invoke | operator fun <T> HasMultipleValues < T >.invoke(vararg items: T ): Unit operator fun <T> HasMultipleValues < T >.invoke(items: Iterable < T >): Unit Adds all specified items to the list property. operator fun <T> HasMultipleValues < T >.invoke(items: Provider <out Iterable < T >>): Unit Adds the output of the given Provider to the list property, evaluated lazily. operator fun <T> HasMultipleValues < T >.invoke(call: () -> Iterable < T >): Unit Adds the output of the given closure to the list property, evaluated lazily. |