reverse


Description:

public StringBuilder reverse ()

Reverses the contents of this builder.

Example:

    var sb = new StringBuilder.withString ("abc");
sb.reverse ();
assert (sb.toString () == "cba");

Returns:

this StringBuilder for chaining.