(self, o)
| 590 | return self.lean_box(v) |
| 591 | |
| 592 | def lean_unbox_uint64(self, o): |
| 593 | fn = getattr(self.lib, "lean_unbox_uint64", None) |
| 594 | if fn is not None: |
| 595 | fn.argtypes = [LeanObjectPtr] |
| 596 | fn.restype = c_uint64 |
| 597 | return fn(o) |
| 598 | return self.lean_unbox(o) |
| 599 | |
| 600 | def lean_box_float(self, v): |
| 601 | # `lean_box_float` is `static inline` in lean.h, so it's not a |
no outgoing calls
no test coverage detected