| 29 | } |
| 30 | |
| 31 | type rangeIter struct { |
| 32 | start, stop, step, i int |
| 33 | } |
| 34 | |
| 35 | // Range returns an Iterator over a range of integers. |
| 36 | func Range(start, stop, step int) Iterator[int] { |
nothing calls this directly
no outgoing calls
no test coverage detected