Creating a pointer array

data pulverizer data.pulverizer at gmail.com
Wed Aug 19 22:21:21 UTC 2020


On Wednesday, 19 August 2020 at 21:10:00 UTC, data pulverizer 
wrote:
> alias is one of those awesome chameleons in D. The template 
> equivalent is
>
> ```
> template P(T) = T*;
> ```


Correction ...
```
template P(T){
   alias P = T*;
}
```



More information about the Digitalmars-d-learn mailing list