A poolable string builder (aka string buffer) for Zig
0

Configure Feed

Select the types of activity you want to include in your feed.

fix readme

Karl Seguin (Aug 2, 2023, 6:34 PM +0800) b2b95c87 edc08a91

+1 -1
+1 -1
readme.md
··· 11 11 // those 100 bytes (aka the static portion of the buffer) are 12 12 // re-used when pooling is used 13 13 14 - var buf = try new Buffer(allocator, 100); 14 + var buf = try Buffer.init(allocator, 100); 15 15 16 16 try buf.writeByte('o'); 17 17 try buf.write("ver 9000!1");