basic versions of contains and remove

This commit is contained in:
Folkert 2021-02-12 23:47:02 +01:00
parent b4ab02f23a
commit afe2f51660
13 changed files with 402 additions and 23 deletions

View file

@ -10,6 +10,9 @@ comptime {
exportDictFn(dict.dictLen, "len");
exportDictFn(dict.dictEmpty, "empty");
exportDictFn(dict.dictInsert, "insert");
exportDictFn(dict.dictRemove, "remove");
exportDictFn(dict.dictContains, "contains");
exportDictFn(hash.wyhash, "hash");
exportDictFn(hash.wyhash_rocstr, "hash_str");
}