| 75 | var _ graph.IteratorShapeCompat = (*iterator2)(nil) |
| 76 | |
| 77 | type iterator2 struct { |
| 78 | qs *QuadStore |
| 79 | collection string |
| 80 | limit int64 |
| 81 | constraint []nosql.FieldFilter |
| 82 | links []Linkage // used in Contains |
| 83 | |
| 84 | size graph.Size |
| 85 | err error |
| 86 | } |
| 87 | |
| 88 | func newLinksToIterator(qs *QuadStore, collection string, links []Linkage) *iterator2 { |
| 89 | filters := linkageToFilters(links) |
nothing calls this directly
no outgoing calls
no test coverage detected