Saves the set of values held in an `AllocationUnit` in a way that can be losslessly restored later.
(&self, unit: AllocationUnit)
| 134 | /// Saves the set of values held in an `AllocationUnit` in a way that can be |
| 135 | /// losslessly restored later. |
| 136 | fn save_values(&self, unit: AllocationUnit) -> CheckerValueSet { |
| 137 | self.unit_values.get(unit).cloned().unwrap_or_default() |
| 138 | } |
| 139 | |
| 140 | /// Restores the set of values held in an `AllocationUnit` that were |
| 141 | /// previously saved by `save_values`. |