MCPcopy Create free account
hub / github.com/digama0/lean-sys / lean_float_array_uget

Function lean_float_array_uget

src/sarray/float.rs:27–30  ·  view source on GitHub ↗
(a: b_lean_obj_arg, i: usize)

Source from the content-addressed store, hash-verified

25
26#[inline(always)]
27pub unsafe fn lean_float_array_uget(a: b_lean_obj_arg, i: usize) -> f64 {
28 debug_assert!(i < lean_sarray_size(a));
29 *lean_float_array_cptr(a).add(i)
30}
31
32#[inline]
33pub unsafe fn lean_float_array_get(a: b_lean_obj_arg, i: b_lean_obj_arg) -> f64 {

Callers 2

lean_float_array_getFunction · 0.85
lean_float_array_fgetFunction · 0.85

Calls 1

lean_float_array_cptrFunction · 0.85

Tested by

no test coverage detected