Dictionary

Undocumented in source.

Constructors

this
this(size_t capacity)

Dictionary constructor.

Members

Aliases

Node
alias Node = KeyValueNode!(K, V)
Undocumented in source.

Functions

dispose
void dispose()

Dictionary destructor.

get
V get(K key, V notFoundValue)

Returns value of key. * Params: * key : key * notFoundValue : value to return if key has not been found

insert
void insert(K key, V value)

Inserts a key and his value.

opIndexAssign
void opIndexAssign(V value, K key)

Index assignment support.

remove
bool remove(K key)

Removes a key and his value from the dictionary.

Meta