Piotr Szturmaj Wrote: > dsimcha wrote: > > Formal review of Jesse Phillips's CSV parser module begins today and > > runs through November . Following that, a vote will take place for one > > week. Please post any comments about this library in this thread. > > > > Docs: > > http://nascent.freeshell.org/programming/D/doc/phobos/std_csv.html > > > > Code: > > https://github.com/he-the-great/phobos/tree/csv > > Could csvText!Struct(...) be generalized to also support Tuples and > (eventually) classes?
I restricted to struct since a class had to be new'd. I and then realized most likely it won't be the final destination. It is better just letting the user move the items over themselves. Tuples should just work since they are just struct. Will double check.