| 1 | package rxgo |
| 2 | |
| 3 | type factoryIterable struct { |
| 4 | factory func(opts ...Option) <-chan Item |
| 5 | } |
| 6 | |
| 7 | func newFactoryIterable(factory func(opts ...Option) <-chan Item) Iterable { |
| 8 | return &factoryIterable{factory: factory} |
nothing calls this directly
no outgoing calls
no test coverage detected