(factory func(opts ...Option) <-chan Item)
| 5 | } |
| 6 | |
| 7 | func newFactoryIterable(factory func(opts ...Option) <-chan Item) Iterable { |
| 8 | return &factoryIterable{factory: factory} |
| 9 | } |
| 10 | |
| 11 | func (i *factoryIterable) Observe(opts ...Option) <-chan Item { |
| 12 | return i.factory(opts...) |
no outgoing calls
no test coverage detected
searching dependent graphs…