On Monday, 28 April 2014 at 10:40:49 UTC, Chris wrote: > So there is no way of filling an array with something like > > Person!(string) *pptr; > > foreach(person; people) { > buf ~= &person; > } Person!(string)*[] arr; Like this?