Overview
>
klyn
>
StringBuilderSync
>
append
Overview
Index
Tree
Deprecated
klyn.StringBuilderSync.append
method
public append(value as Long) as StringBuilderSync:
Description
Appends a signed long. builder = StringBuilderSync() builder.append(123L) print(builder.toString())
Parameters
value Value to append.
Returns
This builder.
Example