From 8dfdeb721e38c04d34f7380cd9bfd770924827ac Mon Sep 17 00:00:00 2001 From: Glenn Fiedler Date: Sun, 24 Dec 2023 18:39:59 -0500 Subject: [PATCH] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 15ccf5b..b2bdec6 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,9 @@ It has the following features: * Serialize a bool with only one bit * Serialize any integer value from [1,64] bits writing only that number of bits to the buffer -* Template based serialization system so you can write a unified serialize function instead of separate read and write -* Serialize signed integer values with [min,max] range, varints, relative integer encoding, zig-zag encoding and compressed float values +* Serialize signed integer values with [min,max] using only the bits required +* Serialize floats, doubles, compressed floats, strings, varints, and integers relative to another integer +* Template based serialization system so you can write a unified serialize function instead of separate read and write functions # Author