Skip to content

Instantly share code, notes, and snippets.

@renaudcerrato
Last active February 9, 2019 07:52
Show Gist options
  • Save renaudcerrato/094ca7414808fa54091c03f978704224 to your computer and use it in GitHub Desktop.
Save renaudcerrato/094ca7414808fa54091c03f978704224 to your computer and use it in GitHub Desktop.
Lambda with Receiver
fun buildString(action: StringBuilder.() -> Unit) : String {
val sb = StringBuilder()
sb.action()
return sb.toString()
}
// inside the lambda, `this` refer to the StringBuilder
val s = buildString {
append("Hello!")
append("How are you?")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment