| 48 | var _ graph.IteratorShapeCompat = &quadIterator{} |
| 49 | |
| 50 | type quadIterator struct { |
| 51 | qs *QuadStore |
| 52 | ind QuadIndex |
| 53 | vals []uint64 |
| 54 | |
| 55 | size graph.Size |
| 56 | err error |
| 57 | } |
| 58 | |
| 59 | func newQuadIterator(qs *QuadStore, ind QuadIndex, vals []uint64) *quadIterator { |
| 60 | return &quadIterator{ |
nothing calls this directly
no outgoing calls
no test coverage detected