From 06e0f13df9f68e79684d91f17416b242acf9a649 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Wed, 16 Jun 2021 17:44:24 +0200 Subject: [PATCH] added a comment in textstream.h --- src/textstream/textstream.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/textstream/textstream.h b/src/textstream/textstream.h index 1970d1a..d62ec97 100644 --- a/src/textstream/textstream.h +++ b/src/textstream/textstream.h @@ -86,6 +86,9 @@ public: const_iterator begin() const; const_iterator end() const; + // IMPROVE ME + // add cbegin(), cend(), rbegin(), rend(), crbegin(), crend() + void to_string(std::string & str, bool clear_string = true) const; void to_string(std::wstring & str, bool clear_string = true) const;