| 1263 | } |
| 1264 | |
| 1265 | int LGBM_BoosterGetFeatureNames(BoosterHandle handle, int* out_len, char** out_strs) { |
| 1266 | API_BEGIN(); |
| 1267 | Booster* ref_booster = reinterpret_cast<Booster*>(handle); |
| 1268 | *out_len = ref_booster->GetFeatureNames(out_strs); |
| 1269 | API_END(); |
| 1270 | } |
| 1271 | |
| 1272 | int LGBM_BoosterGetNumFeature(BoosterHandle handle, int* out_len) { |
| 1273 | API_BEGIN(); |
nothing calls this directly
no test coverage detected