IntDoubleHashMap
open class IntDoubleHashMap(expectedElements: Int, loadFactor: Double = DEFAULT_LOAD_FACTOR.toDouble()) : Iterable<IntDoubleHashMap.IntDoubleCursor> , Accountable, Cloneable<IntDoubleHashMap>
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.IntDoubleHashMap
github: https://github.com/carrotsearch/hppc release 0.10.0
Constructors
Types
Link copied to clipboard
DoubleCursor iterable with size and toArray function implemented
Link copied to clipboard
class IntDoubleCursor
Forked from HPPC, holding int index,key and value
Link copied to clipboard
A view of the keys inside this hash 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