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