Concatenate another EdgeUpdate's edges into this one. Note: The inode must match (this is the caller's responsibility).
(&mut self, other: &EdgeUpdate<H>)
| 351 | /// |
| 352 | /// Note: The inode must match (this is the caller's responsibility). |
| 353 | pub fn concat(&mut self, other: &EdgeUpdate<H>) { |
| 354 | self.edges.extend(other.edges.iter().cloned()); |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | impl<H> fmt::Display for EdgeUpdate<H> { |