Appends a string to the end of this builder.
Example:
var sb = new StringBuilder ();
sb.append ("Hello");
sb.append (" World");
assert (sb.toString () == "Hello World");
| s |
the string to append. |
|
this StringBuilder for chaining. |