Match the elements of the following code snippet (which uses StringBuilder to perform multiple string manipulation operations) to their functions:
fun builderString(
builder: StringBuilder.(String) -> Unit
): String {
val stringBuilder = StringBuilder()
stringBuilder.builder("")
return stringBuilder.toString()
}