Expand description
A non-allocating parser of CSV data. It is compliant with RFC 4180. Due to its non-allocating nature, it can parse very large CSV files with a constant memory cost.
Modules§
- mmap
- Provides a cross platform way to get the bytes in a CSV file using memory mapping. Currently Linux, macOS and Windows are supported.
Structs§
- Parser
- The parser of CSV data.
Functions§
- parse_
number - Utility function that parses the
bytes
array slice to a numbern
. It returns true if the conversion is successful.