Type Definition dict::Dict [] [src]

type Dict<T> = Vec<DictEntry<T>>;

Trait Implementations

impl<T> DictIface<T> for Dict<T>
[src]

[src]

Add an element val of type T, indexed by the string key. Returns false if the key exists or there is a hash collision

[src]

Remove the element identified by the key key and return it, if exists.

[src]

Return a reference to the value identified by the key key, if exists.

[src]

Return true if an element identified by the key key exists.