Would ```val (a, b, _, _) = x``` have higher overh...
# general-advice
f
Would
Copy code
val (a, b, _, _) = x
have higher overhead than
Copy code
val (a, b) = x
?
e
no,
component_N_()
doesn't get called for
_