kactoos-jvm / nnl.rocks.kactoos.map / MapEntry
class MapEntry<out K : Any, out V : Any> : Entry<K, V>
MapEntry as kotlin.collections.Map.Entry.
There is no thread-safety guarantee.
K - Key type
V - Value type
key - The key of the entry’s map.
value - The value associated to the key of the entry’s map.
Since 0.4
| Name | Summary |
|---|---|
| <init> | MapEntry(key: K, value: V)MapEntry as kotlin.collections.Map.Entry. |
| Name | Summary |
|---|---|
| key | val key: KThe key of the entry’s map. |
| value | val value: VThe value associated to the key of the entry’s map. |
| Name | Summary |
|---|---|
| equals | fun equals(other: Any?): Boolean |
| hashCode | fun hashCode(): Int |
| toString | fun toString(): String |