Skip to content

Latest commit

 

History

History
20 lines (10 loc) · 2.64 KB

File metadata and controls

20 lines (10 loc) · 2.64 KB

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

invoke

inline operator fun <K, reified V> MapProperty<K, V>.invoke(vararg pairs: Pair<K, Any>): Unit (source)

Adds all specified key/value pairs to the map property.

operator fun <K, V> MapProperty<K, V>.invoke(map: Map<K, V>): Unit (source)

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 (source)

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 (source)

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