On Wed, Feb 28, 2018 at 4:53 PM, Alex Dvoretskiy
<advoretski...@gmail.com> wrote:
>
> When I'm doing assignments to multiple variables in one line, there is a
> limitation.
>
>
> You can do it in this way:
> w, x = w+i, x+i+i
>
> But can't in this one:
> w, x += i, i+i
>
>
> What do you think, it was done on purpose or this is something worth for
> change proposal?

It was done on purpose, which is to say that there never seemed to be
a reason to add it.  It rarely comes up in practice, and it's not
obvious whether it's better to support `v1, v2 :+ inc1, inc2` or `v1,
v2 += inc` (which adds `inc` to both `v1` and `v2`).

Ian

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to