buildString

Common
JVM
JS
Native
1.0
inline fun buildString (
builderAction : StringBuilder . ( ) -> Unit
) : String

(source)

Builds new string by populating newly created StringBuilder using provided builderAction and then converting it to String .

Common
JVM
JS
Native
1.1
inline fun buildString (
capacity : Int ,
builderAction : StringBuilder . ( ) -> Unit
) : String

(source)

Builds new string by populating newly created StringBuilder initialized with the given capacity using provided builderAction and then converting it to String .