(&mut self, offset: PageOffset)
| 82 | /// Replaces the cell reference with `offset`, returning the existing one. |
| 83 | #[inline] |
| 84 | fn replace(&mut self, offset: PageOffset) -> FreeCellRef { |
| 85 | let next = mem::replace(&mut self.next, offset); |
| 86 | Self { next } |
| 87 | } |
| 88 | |
| 89 | /// Returns whether the cell reference is non-empty. |
| 90 | #[inline] |
no outgoing calls