Skip to content

Instantly share code, notes, and snippets.

@ch8n
Created July 30, 2019 09:16
Show Gist options
  • Select an option

  • Save ch8n/21eb24d4940c3fa23a07169ef2ca0bd8 to your computer and use it in GitHub Desktop.

Select an option

Save ch8n/21eb24d4940c3fa23a07169ef2ca0bd8 to your computer and use it in GitHub Desktop.
Destructuring
// Gotcha #1
data class Items(val one: String, val two: String)
val items= Items("1","2")
val (one, two, three) = items //Destructuring declaration initializer of type Items must have a 'component3()' function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment