Entry

interface Entry<out K, out V>(source)

Represents a key/value pair held by a Map.

Since Kotlin

1.0
interface Entry<out K, out V>(source)

Represents a key/value pair held by a Map.

Since Kotlin

1.1

Properties

Link copied to clipboard
abstract val key: K

Returns the key of this key/value pair.

Since Kotlin 1.0
abstract val key: K

Returns the key of this key/value pair.

Since Kotlin 1.1
Link copied to clipboard
abstract val value: V

Returns the value of this key/value pair.

Since Kotlin 1.0
abstract val value: V

Returns the value of this key/value pair.

Since Kotlin 1.1

Inheritors

Link copied to clipboard