subkt / myaa.subkt.tasks / org.gradle.api.provider.MapProperty
| Name | Summary |
|---|---|
| invoke | operator fun <K, V> MapProperty<K, V>.invoke(vararg pairs: Pair<K, Any>): UnitAdds all specified key/value pairs to the map property. operator fun <K, V> MapProperty<K, V>.invoke(map: Map<K, V>): UnitAdds all items in the specified map to the map property. operator fun <K, V> MapProperty<K, V>.invoke(map: Provider<out Map<K, V>>): UnitAdds the items of the output of the given Provider to the map property, evaluated lazily. operator fun <K, V> MapProperty<K, V>.invoke(call: () -> Map<K, V>): UnitAdds the items of the output of the given closure to the map property, evaluated lazily. |