| 13 | } |
| 14 | |
| 15 | type Iterator struct { |
| 16 | *shape.AP |
| 17 | |
| 18 | Track []Index |
| 19 | NextIndex uint32 |
| 20 | Done bool |
| 21 | } |
| 22 | |
| 23 | func NewIterator(ap *shape.AP) *Iterator { |
| 24 | track := make([]Index, len(ap.Shape)) |
nothing calls this directly
no outgoing calls
no test coverage detected