public insert(position as UInt, value as Double) as StringBuilder throws IndexException:
Inserts a double.
| Parameter | Description |
|---|---|
position | Insertion position between 0 and length. |
value | Value to insert. |
This builder.
builder = StringBuilder()
builder.append("[]")
builder.insert(1u, 1.5)
print(builder.toString())