I notice that `val (nuke) = arm()` if you remove t...
# arrow
s
I notice that
val (nuke) = arm()
if you remove the parenthesis it fails to extract
p
yep, you got it right. We have 3 syntactic options: destructure,
!
and
bind
. THey all delegate onto each other.
s
Is there a page that shows usage of all 3
p
not all three, no
destructure is the less common
s
what's the canonical method
p
bind
is what the others delegate to
s
ok