serenity/AK/StringBuilder.h
Sergey Bugaev 08d9883306 AK: Add StringBuilder::string_view() and StringBuilder::clear()
The former allows you to inspect the string while it's being built.
It's an explicit method rather than `operator StringView()` because
you must remember you can only look at it in between modifications;
appending to the StringBuilder invalidates the StringView.

The latter lets you clear the state of a StringBuilder explicitly, to
start from an empty string again.
2019-09-28 18:29:42 +02:00

40 lines
686 B
C++

#pragma once
#include <AK/String.h>
#include <AK/Vector.h>
#include <stdarg.h>
namespace AK {
class StringBuilder {
public:
using OutputType = String;
explicit StringBuilder(int initial_capacity = 16);
~StringBuilder() {}
void append(const StringView&);
void append(char);
void append(const char*, int);
void appendf(const char*, ...);
void appendvf(const char*, va_list);
String build() { return to_string(); }
String to_string();
ByteBuffer to_byte_buffer();
StringView string_view() const;
void clear();
private:
void will_append(int);
ByteBuffer m_buffer;
int m_length { 0 };
};
}
using AK::StringBuilder;