klyn.StringBuilderSync.append
method
public append(value as Object) as StringBuilderSync:
Description

Appends the string representation of an object.

Parameters
  • value Object to append.
Returns

This builder.

Example
builder = StringBuilderSync()
builder.append(42 as Object)
print(builder.toString())