Add support for parsing nan/inf values #180
Replies: 3 comments
-
Hi @jschueller - thanks for suggesting a feature. I am a little hesitant though, as I like to keep this library small and simple. The approach taken by this library is to offload "special data conversions" to consumers of the library. Specifically it exposes APIs for "Custom Data Type Conversion", see examples here and here. Would that technique work for your use case? |
Beta Was this translation helpful? Give feedback.
-
fair enough, but I would have to get over the limitations mentioned in |
Beta Was this translation helpful? Give feedback.
-
I added some suggestion in #181 - let's see if that can work. Otherwise I may need more specifics about the data format to propose some way forward. |
Beta Was this translation helpful? Give feedback.
-
Similar to numpy or pandas Python libraries, I would like to add support for reading nan or inf values
Here is a snippet of how it would look like for c++ with inf values:
what do you think ?
Beta Was this translation helpful? Give feedback.
All reactions