(items []Item, opts ...Option)
| 6 | } |
| 7 | |
| 8 | func newSliceIterable(items []Item, opts ...Option) Iterable { |
| 9 | return &sliceIterable{ |
| 10 | items: items, |
| 11 | opts: opts, |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | func (i *sliceIterable) Observe(opts ...Option) <-chan Item { |
| 16 | option := parseOptions(append(i.opts, opts...)...) |
no outgoing calls
searching dependent graphs…