(v ...graph.Ref)
| 740 | type Fixed []graph.Ref |
| 741 | |
| 742 | func (s *Fixed) Add(v ...graph.Ref) { |
| 743 | *s = append(*s, v...) |
| 744 | } |
| 745 | func (s Fixed) BuildIterator(qs graph.QuadStore) graph.Iterator { |
| 746 | it := iterator.NewFixed() |
| 747 | for _, v := range s { |
no outgoing calls