DynamicString
Implements a dynamic string. This string can be appended to and otherwise used as a String.
Operation | Description |
create |
Creates a new Dynamic String |
create: aString |
Creates a new Dynamic String initialised with aString |
Operation | Return | Description |
add: aString |
self |
Appends anObject to the receiver. Answers anObject. |
cr |
self |
Appends a newline sequence to the receiver. |
tab |
self |
Appends a tab character to the receiver. |
asString |
String |
Returns the receiver as a String |