picrin
picrin copied to clipboard
CSV library
I'm thinking about implementing a csv library. What do you think about an API of this?
@stibear
read-csv and write-csv? I'm not sure. Please let me know once you implemented the library. I will add it as one of contribution libraries.
Which returned value do you think is better:
- a list of list
- a list of vector
- a ilst of hash (if header exists)
- a vector of ~
@stibear @KeenS
I believe list of list would be the best. vector is not very good at iteration. Providing another function operating on hash-table (dictionary is good I guess) for the fast data processing would be great, though.
@wasabiz Okay, I try to implement once. @KeenS I also prefer returning a list of list.