component2

inline operator fun <Key, Value> ObjectMap.Entry<Key, Value>.component2(): Value?

Allows to destruct ObjectMap.Entry into key and value components. Nullable, since ObjectMap allows null values.

Return

ObjectMap.Entry.value


inline operator fun <Value> IntMap.Entry<Value>.component2(): Value?

Allows to destruct IntMap.Entry into key and value components. Nullable, since IntMap allows null values.

Return

IntMap.Entry.value


inline operator fun <Value> LongMap.Entry<Value>.component2(): Value?

Allows to destruct LongMap.Entry into key and value components. Nullable, since LongMap allows null values.

Return

LongMap.Entry.value


inline operator fun IntIntMap.Entry.component2(): Int

Allows to destruct IntIntMap.Entry into key and value components.

Return

IntIntMap.Entry.value


inline operator fun IntFloatMap.Entry.component2(): Float

Allows to destruct IntFloatMap.Entry into key and value components.

Return

IntFloatMap.Entry.value


inline operator fun <Value> ObjectIntMap.Entry<Value>.component2(): Int

Allows to destruct ObjectIntMap.Entry into key and value components.

Return

ObjectIntMap.Entry.value