MCPcopy Create free account
hub / github.com/BasisResearch/lean.py / lean_unbox_uint64

Function lean_unbox_uint64

lean_py/_runtime.py:592–598  ·  view source on GitHub ↗
(self, o)

Source from the content-addressed store, hash-verified

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

Callers 1

leanpy_unbox_uint64Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected