(o: b_lean_obj_arg)
| 24 | |
| 25 | #[inline] |
| 26 | pub unsafe fn lean_array_byte_size(o: b_lean_obj_arg) -> usize { |
| 27 | core::mem::size_of::<lean_array_object>() |
| 28 | + core::mem::size_of::<*mut ()>() * lean_array_capacity(o) |
| 29 | } |
| 30 | |
| 31 | #[inline] |
| 32 | pub unsafe fn lean_array_data_byte_size(o: b_lean_obj_arg) -> usize { |
nothing calls this directly
no test coverage detected