(o: b_lean_obj_arg, offset: c_uint)
| 97 | |
| 98 | #[inline(always)] |
| 99 | pub unsafe fn lean_ctor_get_float(o: b_lean_obj_arg, offset: c_uint) -> f64 { |
| 100 | debug_assert!(offset >= lean_ctor_num_objs(o) * core::mem::size_of::<*const ()>() as c_uint); |
| 101 | ((lean_ctor_obj_cptr(o) as *const u8).add(offset as usize) as *const f64).read() |
| 102 | } |
| 103 | |
| 104 | #[inline(always)] |
| 105 | pub unsafe fn lean_ctor_get_float32(o: b_lean_obj_arg, offset: c_uint) -> f32 { |
no test coverage detected