From b2f2272b32233fa5bd33a0f78c21dcb9598a7b40 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 16 Apr 2024 21:38:59 -0400 Subject: [PATCH] xo-flatstring: ++ README --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 856b61fb..35b6f731 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,15 @@ Features: - char array representation with maximum size set at compile time. - compile time construction from char array and string concatenation - pointer-free implementation, instances can be used as template arguments -- To the extent practical, provides the same api as `std::string` +- To the extent practical, provides the same api as `std::string`: includes iterators, + access methods, assignment, conversion operators. Limitations: - requires c++20 - not resizable. - does not support wide characters. +- (asof April 2024) missing features: `insert`, `erase`, `push_back`, `append`, `replace`, + `find`, `compare`, `starts_with`, `ends_with`, `contains`, `substr`. ## Getting started