You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 19, 2020. It is now read-only.
Is it possible to make it simpler to read data and then write that same data?
The read function reads in rows as unordered_flat_map<std::string_view, std::string>, but the write function expects unordered_flat_map<std::string, std::string>. This appears to require manual conversion between the types, making something like converting a CSV file to a TSV file more difficult than I had hoped.
The text was updated successfully, but these errors were encountered:
I'm working on a second implementation of this library: https://github.com/p-ranav/csv2. The reader is ready for use. Check it out. Hopefully it works better. I'm planning to archive this repo in favor of csv2.
Sorry again for all the issues you've faced with this library.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is it possible to make it simpler to read data and then write that same data?
The read function reads in rows as
unordered_flat_map<std::string_view, std::string>
, but the write function expectsunordered_flat_map<std::string, std::string>
. This appears to require manual conversion between the types, making something like converting a CSV file to a TSV file more difficult than I had hoped.The text was updated successfully, but these errors were encountered: