Person!(string)
How can I make an array with pointers to concrete "instances" of Person!(string)?
Something like this only with pointers, i.e. buf holds pointers to concrete Person!(string)s:
Appender!(Person!(string)[]) buf = appender!(Person!(string)[]); Thanks in advance.