data class Foo(a : String, b : String, c : String) val destructureMe = Foo("a", "b", "c") val (a, b, c) = destructureMe // Is there anything like _ in scala? val (a, _, c) = destructureMe