StringBuilder

expect fun StringBuilder()(source)

Constructs an empty string builder.


expect fun StringBuilder(capacity: Int)(source)

Constructs an empty string builder with the specified initial capacity.


expect fun StringBuilder(content: CharSequence)(source)

Constructs a string builder that contains the same characters as the specified content char sequence.


expect fun StringBuilder(content: String)(source)

Constructs a string builder that contains the same characters as the specified content string.

actual fun StringBuilder()

Constructs an empty string builder.


actual fun StringBuilder(capacity: Int)

Constructs an empty string builder with the specified initial capacity.

In Kotlin/JS implementation of StringBuilder the initial capacity has no effect on the further performance of operations.


actual fun StringBuilder(content: CharSequence)

Constructs a string builder that contains the same characters as the specified content char sequence.


actual fun StringBuilder(content: String)
actual fun StringBuilder()

Constructs an empty string builder.


actual fun StringBuilder(capacity: Int)

Constructs an empty string builder with the specified initial capacity.


actual fun StringBuilder(content: CharSequence)

Constructs a string builder that contains the same characters as the specified content char sequence.


actual fun StringBuilder(content: String)

Constructs a string builder that contains the same characters as the specified content string.