Module hashtable

Module hashtable 

Source
Expand description

The design of the hashtable is based on the requirments we have. First is we need it to support being both thread local and global. Second we need iterate and mutate at the same time. Third we need to be able to clean up the heap allocation when it is garbage collected.

Structsยง

HashTableCore ๐Ÿ”’
HashTableInner ๐Ÿ”’
LispHashTable ๐Ÿ”’
RootedLispHashTable ๐Ÿ”’
Automatically derived from LispHashTable via #[derive(Trace)]

Enumsยง

HashTableType ๐Ÿ”’

Constantsยง

derive_trace_LispHashTable ๐Ÿ”’

Type Aliasesยง

HashTable ๐Ÿ”’