From 04827308749ed687a22d29a1735c12cf63604e63 Mon Sep 17 00:00:00 2001 From: Parola Marco Date: Thu, 8 Feb 2024 09:51:14 +0000 Subject: [PATCH] Referenced buffers::string_view_buffer in readme.md (#75) --- readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 8b0b6b3..d27622c 100644 --- a/readme.md +++ b/readme.md @@ -1073,7 +1073,9 @@ int main(int argc, char* argv[]) ### Buffers -There are currently two types of buffers available: ```cstring_buffer```, useful for *constexpr* parsing static array like buffer, and ```string_buffer``` for runtime parsing. +There are currently three types of buffers available: +- ```cstring_buffer```, useful for *constexpr* parsing static array-like buffers; +- ```string_buffer``` and ```string_view_buffer``` for runtime parsing. It is however easy to add custom types of buffers, there are just couple of requirements for the types to be eligible as buffers.