(o: *const lean_object)
| 19 | |
| 20 | #[inline(always)] |
| 21 | pub unsafe fn lean_sarray_elem_size(o: *const lean_object) -> c_uint { |
| 22 | debug_assert!(lean_is_sarray(o)); |
| 23 | lean_ptr_other(o) |
| 24 | } |
| 25 | |
| 26 | #[inline(always)] |
| 27 | pub unsafe fn lean_sarray_capacity(o: *const lean_object) -> usize { |
no test coverage detected