| 7 | ) |
| 8 | |
| 9 | type Iterator struct { |
| 10 | *shape.AP |
| 11 | |
| 12 | UShape []uint32 |
| 13 | UStride []uint32 |
| 14 | UTrack []uint32 |
| 15 | |
| 16 | NextIndex uint32 |
| 17 | Done bool |
| 18 | } |
| 19 | |
| 20 | func NewIterator(ap *shape.AP) *Iterator { |
| 21 | xshape := make([]uint32, len(ap.Shape)) |
nothing calls this directly
no outgoing calls
no test coverage detected