| 459 | } |
| 460 | |
| 461 | LGBM_SE LGBM_BoosterGetNumPredict_R(LGBM_SE handle, |
| 462 | LGBM_SE data_idx, |
| 463 | LGBM_SE out, |
| 464 | LGBM_SE call_state) { |
| 465 | R_API_BEGIN(); |
| 466 | int64_t len; |
| 467 | CHECK_CALL(LGBM_BoosterGetNumPredict(R_GET_PTR(handle), R_AS_INT(data_idx), &len)); |
| 468 | R_INT64_PTR(out)[0] = len; |
| 469 | R_API_END(); |
| 470 | } |
| 471 | |
| 472 | LGBM_SE LGBM_BoosterGetPredict_R(LGBM_SE handle, |
| 473 | LGBM_SE data_idx, |
nothing calls this directly
no test coverage detected