Add/remove excerpts in BlockMap randomized tests and fix resulting errors

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Co-Authored-By: Max Brunsfeld <max@zed.dev>
This commit is contained in:
Antonio Scandurra 2022-02-09 19:10:13 +01:00
parent 8d95dbe3e6
commit fab6f0c568
4 changed files with 207 additions and 77 deletions

View file

@ -954,6 +954,10 @@ impl WrapPoint {
pub fn column_mut(&mut self) -> &mut u32 {
&mut self.0.column
}
pub fn is_zero(&self) -> bool {
self.0.is_zero()
}
}
impl sum_tree::Summary for TransformSummary {