I'm in the early stage of discovering your lib, it looks great and fast,
for prototyping some ETL like features on csv,, I'm using type inference and stream management, (to avoid memory consumption)
here are two US:
As a developper, to avoid a second parse, I want to be able on the ResultColumn to have access to some metrics on the data parsed.
e.g. in case of DataType.String, the max length, or on numeric types, the min and max
so that I can better determine how to handle the data, in my case determining the right storage.
Alternatively, as a developer I would like to have a hook to inject a my own function able to determined those metrics
but this may interfere with the single parse philosophy.
I'm in the early stage of discovering your lib, it looks great and fast,
for prototyping some ETL like features on csv,, I'm using type inference and stream management, (to avoid memory consumption)
here are two US:
As a developper, to avoid a second parse, I want to be able on the ResultColumn to have access to some metrics on the data parsed.
e.g. in case of DataType.String, the max length, or on numeric types, the min and max
so that I can better determine how to handle the data, in my case determining the right storage.
Alternatively, as a developer I would like to have a hook to inject a my own function able to determined those metrics
but this may interfere with the single parse philosophy.