MutableLongIntMap



MutableLongIntMap is a container with a MutableMap-like interface for Long primitive keys and Int primitive values.

The underlying implementation is designed to avoid allocations from boxing, and insertion, removal, retrieval, and iteration operations. Allocations may still happen on insertion when the underlying storage needs to grow to accommodate newly added entries to the table. In addition, this implementation minimizes memory usage by avoiding the use of separate objects to hold key/value pairs.

This implementation makes no guarantee as to the order of the keys and values stored, nor does it make guarantees that the order remains constant over time.

This implementation is not thread-safe: if multiple threads access this container concurrently, and one or more threads modify the structure of the map (insertion or removal for instance), the calling code must provide the appropriate synchronization. Multiple threads are safe to read from this map concurrently if no write is happening.

Summary

Public constructors

MutableLongIntMap(initialCapacity: Int)

Creates a new MutableLongIntMap

Cmn

Public functions

Unit

Removes all mappings from this map.

Cmn
inline Int
getOrPut(key: Long, defaultValue: () -> Int)

Returns the value to which the specified key is mapped, if the value is present in the map and not null.

Cmn
inline operator Unit

Removes the specified key and its associated value from the map.

Cmn
inline operator Unit

Removes the specified keys and their associated value from the map.

Cmn
inline operator Unit

Removes the specified keys and their associated value from the map.

Cmn
inline operator Unit

Removes the specified keys and their associated value from the map.

Cmn
inline operator Unit

Puts all the key/value mappings in the from map into this map.

Cmn
Unit
put(key: Long, value: Int)

Creates a new mapping from key to value in this map.

Cmn
Int
put(key: Long, value: Int, default: Int)

Creates a new mapping from key to value in this map.

Cmn
Unit

Puts all the key/value mappings in the from map into this map.

Cmn
Unit
remove(key: Long)

Removes the specified key and its associated value from the map.

Cmn
Boolean
remove(key: Long, value: Int)

Removes the specified key and its associated value from the map if the associated value equals value.

Cmn
inline Unit
removeIf(predicate: (Long, Int) -> Boolean)

Removes any mapping for which the specified predicate returns true.

Cmn
operator Unit
set(key: Long, value: Int)

Creates a new mapping from key to value in this map.

Cmn
Int

Trims this MutableLongIntMap's storage so it is sized appropriately to hold the current mappings.

Cmn

Inherited functions

From androidx.collection.LongIntMap
inline Boolean
all(predicate: (Long, Int) -> Boolean)

Returns true if all entries match the given predicate.

Cmn
Boolean
any()

Returns true if this map has at least one entry.

Cmn
inline Boolean
any(predicate: (Long, Int) -> Boolean)

Returns true if at least one entry matches the given predicate.

Cmn
operator Boolean
contains(key: Long)

Returns true if the specified key is present in this hash map, false otherwise.

Cmn
Boolean

Returns true if the specified key is present in this hash map, false otherwise.

Cmn
Boolean

Returns true if the specified value is present in this hash map, false otherwise.

Cmn
Int

Returns the number of entries in this map.

Cmn
inline Int
count(predicate: (Long, Int) -> Boolean)

Returns the number of entries matching the given predicate.

Cmn
open operator Boolean
equals(other: Any?)

Compares the specified object other with this hash map for equality.

Cmn
inline Unit
forEach(block: (key: Long, value: Int) -> Unit)

Iterates over every key/value pair stored in this map by invoking the specified block lambda.

Cmn
inline Unit
forEachKey(block: (key: Long) -> Unit)

Iterates over every key stored in this map by invoking the specified block lambda.

Cmn
inline Unit
forEachValue(block: (value: Int) -> Unit)

Iterates over every value stored in this map by invoking the specified block lambda.

Cmn
operator Int
get(key: Long)

Returns the value corresponding to the given key.

Cmn
Int
getOrDefault(key: Long, defaultValue: Int)

Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.

Cmn
inline Int
getOrElse(key: Long, defaultValue: () -> Int)

Returns the value for the given key if the value is present and not null.

Cmn
open Int

Returns the hash code value for this map.

Cmn
Boolean

Indicates whether this map is empty.

Cmn
Boolean

Returns true if this map is not empty.

Cmn
String
joinToString(
    separator: CharSequence,
    prefix: CharSequence,
    postfix: CharSequence,
    limit: Int,
    truncated: CharSequence
)

Creates a String from the entries, separated by separator and using prefix before and postfix after, if supplied.

Cmn
inline String
joinToString(
    separator: CharSequence,
    prefix: CharSequence,
    postfix: CharSequence,
    limit: Int,
    truncated: CharSequence,
    crossinline transform: (key: Long, value: Int) -> CharSequence
)

Creates a String from the entries, separated by separator and using prefix before and postfix after, if supplied.

Cmn
Boolean

Returns true if this map has no entries.

Cmn
open String

Returns a string representation of this map.

Cmn

Inherited properties

From androidx.collection.LongIntMap
Int

Returns the number of key-value pairs that can be stored in this map without requiring internal storage reallocation.

Cmn
Int

Returns the number of key-value pairs in this map.

Cmn

Public constructors

MutableLongIntMap

MutableLongIntMap(initialCapacity: Int = DefaultScatterCapacity)

Creates a new MutableLongIntMap

Parameters
initialCapacity: Int = DefaultScatterCapacity

The initial desired capacity for this container. the container will honor this value by guaranteeing its internal structures can hold that many entries without requiring any allocations. The initial capacity can be set to 0.

Public functions

clear

fun clear(): Unit

Removes all mappings from this map.

getOrPut

inline fun getOrPut(key: Long, defaultValue: () -> Int): Int

Returns the value to which the specified key is mapped, if the value is present in the map and not null. Otherwise, calls defaultValue() and puts the result in the map associated with key.

minusAssign

inline operator fun minusAssign(key: Long): Unit

Removes the specified key and its associated value from the map.

minusAssign

inline operator fun minusAssign(keys: LongArray): Unit

Removes the specified keys and their associated value from the map.

minusAssign

inline operator fun minusAssign(keys: LongList): Unit

Removes the specified keys and their associated value from the map.

minusAssign

inline operator fun minusAssign(keys: LongSet): Unit

Removes the specified keys and their associated value from the map.

plusAssign

inline operator fun plusAssign(from: LongIntMap): Unit

Puts all the key/value mappings in the from map into this map.

put

fun put(key: Long, value: Int): Unit

Creates a new mapping from key to value in this map. If key is already present in the map, the association is modified and the previously associated value is replaced with value. If key is not present, a new entry is added to the map, which may require to grow the underlying storage and cause allocations. Return the previous value associated with the key, or null if the key was not present in the map.

put

fun put(key: Long, value: Int, default: Int): Int

Creates a new mapping from key to value in this map. If key is already present in the map, the association is modified and the previously associated value is replaced with value. If key is not present, a new entry is added to the map, which may require to grow the underlying storage and cause allocations.

Returns
Int

value previously associated with key or default if key was not present.

putAll

fun putAll(from: LongIntMap): Unit

Puts all the key/value mappings in the from map into this map.

remove

fun remove(key: Long): Unit

Removes the specified key and its associated value from the map.

remove

fun remove(key: Long, value: Int): Boolean

Removes the specified key and its associated value from the map if the associated value equals value. Returns whether the removal happened.

removeIf

inline fun removeIf(predicate: (Long, Int) -> Boolean): Unit

Removes any mapping for which the specified predicate returns true.

set

operator fun set(key: Long, value: Int): Unit

Creates a new mapping from key to value in this map. If key is already present in the map, the association is modified and the previously associated value is replaced with value. If key is not present, a new entry is added to the map, which may require to grow the underlying storage and cause allocations.

trim

fun trim(): Int

Trims this MutableLongIntMap's storage so it is sized appropriately to hold the current mappings.

Returns the number of empty entries removed from this map's storage. Returns be 0 if no trimming is necessary or possible.