Creating a pointer array

data pulverizer data.pulverizer at gmail.com
Wed Aug 19 13:03:54 UTC 2020


Hi all,

How do you create an array of pointers in D? I tried something 
like

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

Or

```
(double*) []y;
```

But I get the error:

```
Error: only one index allowed to index double[]
```

Thanks in advance.


More information about the Digitalmars-d-learn mailing list