xtd 0.2.0
Loading...
Searching...
No Matches

◆ string_builder

Represents text as a sequence of UTF-8 code units.

Namespace
xtd
Library
xtd.core
Remarks
A string is a sequential collection of characters that's used to represent text. A xtd::u32string object is a sequential collection of xtd::char32 that represent a string; a xtd::char32 corresponds to a UTF-32 code unit. The value of the xtd::u32string object is the content of the sequential collection of xtd::char32, and unlike std::basic_string<char16_t> that value is immutable (that is, it is read-only).
If you want the same mutable string class, you can use xtd::text::string_builder class.
xtd::u32string implements xtd::basic_string and therefore offers the full (immutable) API of std::u32string.