www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Array operation a1 + a2 not implemented!

reply Caligo <iteronvexor gmail.com> writes:
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?
Mar 17 2012
parent Timon Gehr <timon.gehr gmx.ch> writes:
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[]; }
Mar 18 2012