v/vlib/hash
2025-07-02 15:45:47 +03:00
..
crc32 docs: use cmd/tools/find_doc_comments_with_no_dots.v to put some missing dots in the doc comments of public symbols. 2025-07-02 15:45:47 +03:00
fnv1a fmt: remove the prefixed module name of const names, that are in the same module (related #22183) (#22185) 2024-09-10 11:25:56 +03:00
hash.v hash: add more methods to the hash.Hash interface, to match the ones in Go (#22001) 2024-08-07 19:53:57 +03:00
hash_compiles_test.v
README.md
wyhash.c.v checker: do not allow &u8(0), force nil like we do with &Type(0) 2025-05-03 22:37:51 +03:00
wyhash.js.v
wyhash.v

Description

hash provides a way to hash binary data, i.e. produce a shorter value, that is highly content dependent, so even slightly different content will produce widely different hashes.

Hash functions are useful for implementing maps, caches etc.