From efc1a8ddfb59398e3216c0fd675dce7a81e8679d Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Fri, 19 Jan 2024 20:17:35 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7601508..f1362e7 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - [Open addressing](https://en.wikipedia.org/wiki/Hash_table#Open_addressing) using [Robin Hood](https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing) hashing. - Generic interface with support for variable-sized items. -- Built-in [SipHash](https://en.wikipedia.org/wiki/SipHash) or [MurmurHash3](https://en.wikipedia.org/wiki/MurmurHash) and allows for alternative algorithms. +- Built-in [SipHash](https://en.wikipedia.org/wiki/SipHash), [MurmurHash3](https://en.wikipedia.org/wiki/MurmurHash), [xxHash](https://github.com/Cyan4973/xxHash) and allows for alternative algorithms. - Supports C99 and up. - Supports custom allocators. - Pretty darn good performance. 🚀