Iterate over all atoms in this graph_op.
(&self)
| 608 | impl<H> GraphOp<H> { |
| 609 | /// Iterate over all atoms in this graph_op. |
| 610 | pub fn atoms(&self) -> HunkAtomIter<'_, H> { |
| 611 | HunkAtomIter { |
| 612 | graph_op: self, |
| 613 | index: 0, |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | /// Count the number of atoms in this graph_op. |
| 618 | pub fn atom_count(&self) -> usize { |