1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/hash
Alexander Medvednikov 6756d28595 all: 2023 copyright
2023-03-28 22:55:57 +02:00
..
crc32 all: 2023 copyright 2023-03-28 22:55:57 +02:00
fnv1a all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +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
hash.v all: 2023 copyright 2023-03-28 22:55:57 +02: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 hash: document all public functions (#16987) 2023-01-15 22:37:09 +02:00
wyhash.js.v js,checker: fix some modules build for v -b js self, fix or block check in ast.CallExpr (#12231) 2021-10-19 12:11:54 +03:00
wyhash.v all: 2023 copyright 2023-03-28 22:55:57 +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.