| 1 | package rxgo |
| 2 | |
| 3 | type rangeIterable struct { |
| 4 | start, count int |
| 5 | opts []Option |
| 6 | } |
| 7 | |
| 8 | func newRangeIterable(start, count int, opts ...Option) Iterable { |
| 9 | return &rangeIterable{ |
nothing calls this directly
no outgoing calls
no test coverage detected