v/vlib/hash
2024-01-01 23:29:54 +02:00
..
crc32 all: update copyright year (#20334) 2024-01-01 23:29:54 +02:00
fnv1a all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
hash.v all: update copyright year (#20334) 2024-01-01 23:29:54 +02:00
hash_compiles_test.v tools: add report_v_module_folders_without_tests.v . Use it to discover other modules without _test.v files. Add simple ones, to ensure CI can find more breakage on future wide changes to vlib/ 2022-10-16 22:40:17 +03:00
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
wyhash.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
wyhash.js.v
wyhash.v all: update copyright year (#20334) 2024-01-01 23:29:54 +02:00

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.