dmdscript.RandAA

Members

Classes

KeyError
class KeyError

Exception thrown on missing keys.

RandAA
class RandAA(K, V, bool storeHash = shouldStoreHash!(K), bool useRandom = false)

An associative array class that uses randomized probing and open addressing. K is the key type, V is the value type, storeHash determines whether the hash of each key is stored in the array. This increases space requirements, but allows for faster rehashing. By default, the hash is stored unless the array is an array of floating point or integer types.

Meta