Returns the heap entry at `index` for mutation.
(&mut self, index: usize)
| 267 | |
| 268 | /// Returns the heap entry at `index` for mutation. |
| 269 | pub(crate) fn get_mut(&mut self, index: usize) -> &mut HeapDatum { |
| 270 | &mut self.data[index] |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | /// Tagged pointers for constant and heap addresses. |
no outgoing calls
no test coverage detected