On Wednesday, 19 August 2020 at 13:03:54 UTC, data pulverizer wrote:
How do you create an array of pointers in D? I tried something like

```
double* []y;
```

I'd write it

double*[] y;

but yeah that's it.

Error: only one index allowed to index double[]

That must be at the usage point where you prolly just need parens or something.

Reply via email to