(mut self, other: Option<Self>)
| 115 | } |
| 116 | |
| 117 | fn combine(mut self, other: Option<Self>) -> Self { |
| 118 | other.map_or(self, |other_id| { |
| 119 | self.hash = combine_hashes(self.hash, other_id.hash); |
| 120 | self |
| 121 | }) |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | /// A cache that contains the postorder index and the identifier of [`TreeNode`]s by the |
no test coverage detected