mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
basic versions of contains and remove
This commit is contained in:
parent
b4ab02f23a
commit
afe2f51660
13 changed files with 402 additions and 23 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue