| 177 | } |
| 178 | |
| 179 | LEAN_EXPORT lean_object * leanpy_alloc_array(size_t size, size_t capacity) { |
| 180 | return lean_alloc_array(size, capacity); |
| 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); |
nothing calls this directly
no test coverage detected