// A string builder that supports dynamic resizing while building a string. // The class is based around an instance of std::string and allows moving // ownership out of the class once the string has been built. class RTC_EXPORT StringBuilder { public:
StringBuilder() = default;
explicit StringBuilder(absl::string_view s) : str_(s) {}
StringBuilder(const StringBuilder&) = default;
StringBuilder& operator=(const StringBuilder&) = default;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.