public insert(position as UInt, value as UShort) as StringBuilderSync throws IndexException:
Inserts an unsigned short.
| Parameter | Description |
|---|---|
position | Insertion position between 0 and length. |
value | Value to insert. |
This builder.
builder = StringBuilderSync()
builder.append("[]")
builder.insert(1u, UShort(12))
print(builder.toString())