kotlin.collections.getValue
getValue
inline operator fun <V, V1 : V> Map<in String, V>.getValue( thisRef: Any?, property: KProperty<*> ): V1
Returns the value of the property for the given object from this read-only map.
Parameters
thisRef
- the object for which the value is requested (not used).
property
- the metadata for the property, used to get the name of property and lookup the value corresponding to this name in the map.
Exceptions
NoSuchElementException
- when the map doesn't contain value for the property name and doesn't provide an implic