You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the sorted column has NaN (Not-A-Number) values, one can still sort using `converter::FailureS2Tprocess::VARIANT_NAN` template parameter. Refer [tests/testViewfNaN001.cpp](tests/testViewfNaN001.cpp)
One can also provide their own implementations of _T2S_FORMAT_ or _S2T_FORMAT_. For implentation details, refer **exConv001.cpp, ex008.cpp, ex009.cpp**.
52
-
<br> <br>
53
53
54
-
---
54
+
<br>
55
+
56
+
55
57
## Removed `class no_converter : public std::exception`
56
58
For types which are not supported will generate compile-time error. This approach is better then getting a run-time exception.
57
59
58
-
---
59
-
## Performance gains
60
+
<br>
61
+
62
+
## Refactored constructor of `LabelParams`
63
+
In the upstream repo, the labels-usage for row and column could be turned off by passing `-1`. Instead of `int` , enum's `FlgColumnName` and `FlgRowName` are passed to the constrcutor.
- `pColumnNameIdx` specifies the zero-based row index of the column labels, setting it to -1 prevents column lookup by label name, and gives access to all rows as document data. Default: 0
14
-
- `pRowNameIdx` specifies the zero-based column index of the row labels, setting it to -1 prevents row lookup by label name, and gives access to all columns as document data. Default: -1
14
+
- `pColumnNameFlg` specifies the zero-based row index of the column labels, setting it to _FlgColumnName::CN_MISSING_ prevents column lookup by label name, and gives access to all rows as document data. Default: _FlgColumnName::CN_PRESENT_
15
+
- `pRowNameIdx` specifies the zero-based column index of the row labels, setting it to _FlgRowName::RN_MISSING_ prevents row lookup by label name, and gives access to all columns as document data. Default: _FlgRowName::RN_MISSING_
0 commit comments