| 181 | } |
| 182 | |
| 183 | LEAN_EXPORT void leanpy_array_set_core(b_lean_obj_arg o, size_t i, lean_obj_arg v) { |
| 184 | lean_array_set_core(o, i, v); |
| 185 | } |
| 186 | |
| 187 | LEAN_EXPORT void leanpy_inc(b_lean_obj_arg o) { lean_inc(o); } |
| 188 | LEAN_EXPORT void leanpy_dec(lean_obj_arg o) { lean_dec(o); } |
nothing calls this directly
no test coverage detected