From 2d8fe4e0724509e87428062f81e9de5356aa3e6a Mon Sep 17 00:00:00 2001 From: Glenn Fiedler Date: Sun, 24 Dec 2023 18:42:09 -0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 981559c..176d336 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ 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 * Serialize signed integer values with [min,max] writing only the required bits to the buffer -* Serialize floats, doubles, compressed floats, strings, varints, and integers relative to another integer -* Serialize alignment support so you can align your bitstream to a byte boundary whenever you want +* Serialize floats, doubles, compressed floats, strings, byte arrays, varints, and integers relative to another integer +* Alignment support so you can align your bitstream to a byte boundary whenever you want * Template based serialization system so you can write a unified serialize function instead of separate read and write functions # Author