| 165 | /* ------------------------------------------------------------------ */ |
| 166 | |
| 167 | LEAN_EXPORT lean_object * leanpy_alloc_ctor(unsigned tag, unsigned num_objs, unsigned scalar_sz) { |
| 168 | return lean_alloc_ctor(tag, num_objs, scalar_sz); |
| 169 | } |
| 170 | |
| 171 | LEAN_EXPORT void leanpy_ctor_set(b_lean_obj_arg o, unsigned i, lean_obj_arg v) { |
| 172 | lean_ctor_set(o, i, v); |
nothing calls this directly
no test coverage detected