mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +00:00
hash function returns u64!
This commit is contained in:
parent
b01309ea7f
commit
4be5780215
1 changed files with 1 additions and 1 deletions
|
@ -401,7 +401,7 @@ pub fn dictLen(dict: RocDict) callconv(.C) usize {
|
||||||
|
|
||||||
// commonly used type aliases
|
// commonly used type aliases
|
||||||
const Opaque = ?[*]u8;
|
const Opaque = ?[*]u8;
|
||||||
const HashFn = fn (u64, ?[*]u8) callconv(.C) usize;
|
const HashFn = fn (u64, ?[*]u8) callconv(.C) u64;
|
||||||
const EqFn = fn (?[*]u8, ?[*]u8) callconv(.C) bool;
|
const EqFn = fn (?[*]u8, ?[*]u8) callconv(.C) bool;
|
||||||
|
|
||||||
const Inc = fn (?[*]u8) callconv(.C) void;
|
const Inc = fn (?[*]u8) callconv(.C) void;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue