t8-mod/deps/rapidcsv/doc/rapidcsv_ConverterParams.md

22 lines
919 B
Markdown
Raw Normal View History

2024-02-15 15:46:47 -05:00
## class rapidcsv::ConverterParams
Datastructure holding parameters controlling how invalid numbers (including empty strings) should be handled.
---
```c++
ConverterParams (const bool pHasDefaultConverter = false, const long double pDefaultFloat = std::numeric_limits<long double>::signaling_NaN(), const long long pDefaultInteger = 0, const bool pNumericLocale = true)
```
Constructor.
**Parameters**
- `pHasDefaultConverter` specifies if conversion of non-numerical strings shall be converted to a default numerical value, instead of causing an exception to be thrown (default).
- `pDefaultFloat` floating-point default value to represent invalid numbers.
- `pDefaultInteger` integer default value to represent invalid numbers.
- `pNumericLocale` specifies whether to honor LC_NUMERIC locale (default true).
---
###### API documentation generated using [Doxygenmd](https://github.com/d99kris/doxygenmd)