MCPcopy
hub / github.com/cayleygraph/cayley / not

Struct not

graph/iterator/not.go:35–38  ·  view source on GitHub ↗

Not iterator acts like a complement for the primary iterator. It will return all the vertices which are not part of the primary iterator.

Source from the content-addressed store, hash-verified

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.
35type not struct {
36 primary graph.IteratorShape
37 allIt graph.IteratorShape
38}
39
40func newNot(primaryIt, allIt graph.IteratorShape) *not {
41 return &not{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected