StringBuffer

Constructors

this
this(size_t capacity)
Undocumented in source.

Members

Functions

append
Appendable append(const(char)[] csq)
Undocumented in source. Be warned that the author may not have intended to support it.
append
Appendable append(const(char)[] csq, int start, int end)
Undocumented in source. Be warned that the author may not have intended to support it.
append
Appendable append(char c)
Undocumented in source. Be warned that the author may not have intended to support it.
append
Appendable append(int c)
Undocumented in source. Be warned that the author may not have intended to support it.
append
Appendable append(float c)
Undocumented in source. Be warned that the author may not have intended to support it.
clear
void clear()
Undocumented in source. Be warned that the author may not have intended to support it.
length
int length()
Undocumented in source. Be warned that the author may not have intended to support it.
setLength
void setLength(int len)
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

_buffer
Appender!string _buffer;
Undocumented in source.

Inherited Members

From Appendable

append
Appendable append(const(char)[] csq)

Appends the specified character sequence to this {@code Appendable}.

append
Appendable append(const(char)[] , int start, int end)

Appends a subsequence of the specified character sequence to this {@code Appendable}.

append
Appendable append(char c)

Appends the specified character to this {@code Appendable}.

Meta