In fact, I often end up writing code like ``` when...
# language-proposals
d
In fact, I often end up writing code like
Copy code
when {
  v1 is SomeKindOfValue && v2 is SomeOtherKindOfValue ->
    // destructure v1 & v2, do some further matching
  // ...
}