44 lines
2.1 KiB
Kotlin
44 lines
2.1 KiB
Kotlin
@file:kotlin.jvm.JvmName("MapAccessorsKt")
|
|
package kotlin.collections
|
|
|
|
import kotlin.reflect.KProperty
|
|
import kotlin.internal.Exact
|
|
|
|
/**
|
|
* Returns the value of the property for the given object from this read-only map.
|
|
* @param thisRef the object for which the value is requested (not used).
|
|
* @param property the metadata for the property, used to get the name of property and lookup the value corresponding to this name in the map.
|
|
* @return the property value.
|
|
*
|
|
* @throws NoSuchElementException when the map doesn't contain value for the property name and doesn't provide an implicit default (see [withDefault]).
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")
|
|
public inline operator fun <V, V1: V> Map<in String, @Exact V>.getValue(thisRef: Any?, property: KProperty<*>): V1
|
|
= getOrImplicitDefault(property.name) as V1
|
|
|
|
/**
|
|
* Returns the value of the property for the given object from this mutable map.
|
|
* @param thisRef the object for which the value is requested (not used).
|
|
* @param property the metadata for the property, used to get the name of property and lookup the value corresponding to this name in the map.
|
|
* @return the property value.
|
|
*
|
|
* @throws NoSuchElementException when the map doesn't contain value for the property name and doesn't provide an implicit default (see [withDefault]).
|
|
*/
|
|
@kotlin.jvm.JvmName("getVar")
|
|
@kotlin.internal.InlineOnly
|
|
@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")
|
|
public inline operator fun <V> MutableMap<in String, in V>.getValue(thisRef: Any?, property: KProperty<*>): V
|
|
= getOrImplicitDefault(property.name) as V
|
|
|
|
/**
|
|
* Stores the value of the property for the given object in this mutable map.
|
|
* @param thisRef the object for which the value is requested (not used).
|
|
* @param property the metadata for the property, used to get the name of property and store the value associated with that name in the map.
|
|
* @param value the value to set.
|
|
*/
|
|
@kotlin.internal.InlineOnly
|
|
public inline operator fun <V> MutableMap<in String, in V>.setValue(thisRef: Any?, property: KProperty<*>, value: V) {
|
|
this.put(property.name, value)
|
|
}
|