v / vlib / hash / wyhash.js.v
6 lines · 5 sloc · 100 bytes · c1aa782a6c3eba589e4a92f8a6712570470abb7d
Raw
1module hash
2
3pub fn sum64_string(s string, key u64) u64 {
4 panic('not yet implemented')
5 return 0
6}
7