(self, o)
| 523 | ctypes.cast(addr, POINTER(c_uint64))[0] = val |
| 524 | |
| 525 | def lean_array_size(self, o): |
| 526 | arr_cls = structs.get("lean_array_object") |
| 527 | arr = ctypes.cast(o, POINTER(arr_cls)) |
| 528 | return arr.contents.m_size |
| 529 | |
| 530 | def lean_array_get_core(self, o, i): |
| 531 | arr_cls = structs.get("lean_array_object") |
no test coverage detected