| 6 | ) |
| 7 | |
| 8 | type createIterable struct { |
| 9 | next <-chan Item |
| 10 | opts []Option |
| 11 | subscribers []chan Item |
| 12 | mutex sync.RWMutex |
| 13 | producerAlreadyCreated bool |
| 14 | } |
| 15 | |
| 16 | func newCreateIterable(fs []Producer, opts ...Option) Iterable { |
| 17 | option := parseOptions(opts...) |
nothing calls this directly
no outgoing calls
no test coverage detected