Unique iterator removes duplicate values from it's subiterator.
| 31 | |
| 32 | // Unique iterator removes duplicate values from it's subiterator. |
| 33 | type unique struct { |
| 34 | subIt graph.IteratorShape |
| 35 | } |
| 36 | |
| 37 | func newUnique(subIt graph.IteratorShape) *unique { |
| 38 | return &unique{ |
nothing calls this directly
no outgoing calls
no test coverage detected