| 177 | } |
| 178 | |
| 179 | LGBM_SE LGBM_DatasetFree_R(LGBM_SE handle, |
| 180 | LGBM_SE call_state) { |
| 181 | R_API_BEGIN(); |
| 182 | if (R_GET_PTR(handle) != nullptr) { |
| 183 | CHECK_CALL(LGBM_DatasetFree(R_GET_PTR(handle))); |
| 184 | R_SET_PTR(handle, nullptr); |
| 185 | } |
| 186 | R_API_END(); |
| 187 | } |
| 188 | |
| 189 | LGBM_SE LGBM_DatasetSetField_R(LGBM_SE handle, |
| 190 | LGBM_SE field_name, |
nothing calls this directly
no test coverage detected