(&mut self, items: &[T], mut f: impl FnMut(&mut Self, &T))
| 134 | Node::IsLastRow => buf.push(4), |
| 135 | Node::IsTransition => buf.push(5), |
| 136 | Node::Add(a, b) => { |
| 137 | buf.push(6); |
| 138 | push_node_id(buf, *a); |
| 139 | push_node_id(buf, *b); |
| 140 | }, |
| 141 | Node::Sub(a, b) => { |
| 142 | buf.push(7); |
| 143 | push_node_id(buf, *a); |
| 144 | push_node_id(buf, *b); |
no test coverage detected