Not iterator acts like a complement for the primary iterator. It will return all the vertices which are not part of the primary iterator.
| 33 | // Not iterator acts like a complement for the primary iterator. |
| 34 | // It will return all the vertices which are not part of the primary iterator. |
| 35 | type not struct { |
| 36 | primary graph.IteratorShape |
| 37 | allIt graph.IteratorShape |
| 38 | } |
| 39 | |
| 40 | func newNot(primaryIt, allIt graph.IteratorShape) *not { |
| 41 | return ¬{ |
nothing calls this directly
no outgoing calls
no test coverage detected