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

Struct unique

graph/iterator/unique.go:33–35  ·  view source on GitHub ↗

Unique iterator removes duplicate values from it's subiterator.

Source from the content-addressed store, hash-verified

31
32// Unique iterator removes duplicate values from it's subiterator.
33type unique struct {
34 subIt graph.IteratorShape
35}
36
37func newUnique(subIt graph.IteratorShape) *unique {
38 return &unique{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected