IntLongHashMap
open class IntLongHashMap(expectedElements: Int, loadFactor: Double = DEFAULT_LOAD_FACTOR.toDouble()) : Iterable<IntLongHashMap.IntLongCursor> , Accountable, Cloneable<IntLongHashMap>
A hash map of int to double, implemented using open addressing with linear probing for collision resolution.
Mostly forked and trimmed from com.carrotsearch.hppc.IntLongHashMap
github: https://github.com/carrotsearch/hppc release 0.10L
Constructors
Types
Link copied to clipboard
class IntLongCursor
Forked from HPPC, holding int index,key and value
Link copied to clipboard
A view of the keys inside this hash map.
Link copied to clipboard
LongCursor iterable with size and toArray function implemented
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