mirror of
https://github.com/red0124/ssp.git
synced 2025-12-15 22:29:55 +01:00
make split_input private, make resplit private, update tests and the converter
This commit is contained in:
10
README.md
10
README.md
@@ -48,6 +48,7 @@ Bill (Heath) Gates 65 3.3
|
||||
* Works on any type
|
||||
* Easy to use
|
||||
* No exceptions
|
||||
* Works with quotes, escapes and spacings
|
||||
* Columns and rows can be ignored
|
||||
* Works with any type of delimiter
|
||||
* Can return whole objects composed of converted values
|
||||
@@ -216,6 +217,15 @@ inline bool ss::extract(const char* begin, const char* end, shape& dst) {
|
||||
```
|
||||
The shape enum will be used in an example below. The **inline** is there just to prevent multiple definition errors. The function returns **true** if the conversion was a success, and **false** otherwise. The function uses **const char*** begin and end for performance reasons.
|
||||
|
||||
## Quoting
|
||||
Not yet documented.
|
||||
|
||||
## Escaping
|
||||
Not yet documented.
|
||||
|
||||
## Spacing
|
||||
Not yet documented.
|
||||
|
||||
## Error handling
|
||||
|
||||
Detailed error messages can be accessed via the **error_msg** method, and to enable them the error mode has to be changed to **error_mode::error_string** using the **set_error_mode** method:
|
||||
|
||||
Reference in New Issue
Block a user