LongIntHashMap
open class LongIntHashMap @JvmOverloads constructor(expectedElements: Int, loadFactor: Double = DEFAULT_LOAD_FACTOR.toDouble()) : Iterable<LongIntHashMap.LongIntCursor> , Accountable, Cloneable<LongIntHashMap>
A hash map of long to int, implemented using open addressing with linear probing for collision resolution.
Mostly forked and trimmed from com.carrotsearch.hppc.LongIntHashMap
github: https://github.com/carrotsearch/hppc release 0.10.0
Constructors
Types
Link copied to clipboard
A view of the keys inside this hash map.
Link copied to clipboard
class LongIntCursor
Forked from HPPC, holding int index,key and value
Link copied to clipboard
A view over the set of values of this map.
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Ensure this container can hold at least the given number of keys (entries) without resizing its buffers.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Returns a specialized view of the keys of this associated container.
Link copied to clipboard
Link copied to clipboard
Trove-inspired API method. An equivalent of the following code:
Link copied to clipboard
Return the memory usage of this object in bytes. Negative values are illegal.
Link copied to clipboard