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 >): Unit Adds all specified key/value pairs to the map property. operator fun <K, V> MapProperty < K , V >.invoke(map: Map < K , V >): Unit Adds all items in the specified map to the map property. operator fun <K, V> MapProperty < K , V >.invoke(map: Provider <out Map < K , V >>): Unit Adds 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 >): Unit Adds the items of the output of the given closure to the map property, evaluated lazily. |