Add support for parsing nan/inf values #180
Closed
jschueller
started this conversation in
Ideas
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? |
0 replies
|
fair enough, but I would have to get over the limitations mentioned in |
0 replies
|
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. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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 ?
All reactions