buildString

fun buildString(strings: List<String>): String

Converts a list of Strings, for example from a list, into a concatenated String.

Return

Returns concatenated string that contains all provided values.

Author

Griefed

Parameters

strings

List of strings that will be concatenated into one string


fun buildString(vararg args: String): String

Converts a sequence of Strings, for example from a list, into a concatenated String.

Return

Returns concatenated string that contains all provided values.

Author

whitebear60

Griefed

Parameters

args

Strings that will be concatenated into one string