You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library consists solely of the class `utf8_string`, which acts as a drop-in replacement for `std::string`.
8
8
Its implementation is successfully in the middle between small memory footprint and fast access. All functionality of `std::string` is therefore replaced by the corresponding codepoint-based UTF-32 version - translating every access to UTF-8 under the hood.
9
9
10
-
#### *CHANGES BETWEEN Version 4.a and 3.2.4*
10
+
#### *CHANGES BETWEEN Version 4.0 and 3.2.4*
11
11
12
12
-**Class `utf8_string` is now defined inside `namespace tiny_utf8`**. If you want the old declaration in the global namespace, `#define TINY_UTF8_GLOBAL_NAMESPACE`
13
13
-***NEW: Support for C++20***: Use class `tiny_utf8::u8string`, which uses `char8_t` as underlying data type (instead of `char`)
0 commit comments