This probably won't make it into 1.0. Something like A .+= B * C should lower to something like mul!(A, B, C; accum=+). This is difficult to do since * doesn't have an in-place form, and I'd need to map every such symbol to its functional form or do exact specification of broadcast rules (which might be better). In the meantime broadcasts will be a convenient syntax, but in-place broadcasting will be slow.