Overview
>
klyn
>
StringBuilderSync
>
append
Overview
Index
Tree
Deprecated
klyn.StringBuilderSync.append
method
public append(value as Double) as StringBuilderSync:
Description
Appends a double. builder = StringBuilderSync() builder.append(1.5) print(builder.toString())
Parameters
value Value to append.
Returns
This builder.
Example