MapLike

sealed external interface MapLike<T>(source)

Type of objects whose values are all of the same type. The in and for-in operators can not be safely used, since Object.prototype may be modified by outside code.

Functions

Link copied to clipboard
abstract operator fun get(key: String): T?
Link copied to clipboard
abstract operator fun set(key: String, value: T?)