Array operation a1 + a2 not implemented!

Timon Gehr timon.gehr at gmx.ch
Sun Mar 18 04:15:41 PDT 2012


On 03/18/2012 05:37 AM, Caligo wrote:
> void main() {
>    float[4] a1 = [1, 2, 3, 4];
>    float[4] a2 = [3, 2, 8, 2];
>    auto r = a1 + a2;
> }
>
> When are they going to be implemented?

I don't know, but this works:
void main() {
     float[4] a1 = [1, 2, 3, 4];
     float[4] a2 = [3, 2, 8, 2];
     float[4] r = a1[] + a2[];
}


More information about the Digitalmars-d mailing list