MCPcopy Create free account
hub / github.com/ReactiveX/RxGo / factoryIterable

Struct factoryIterable

iterable_factory.go:3–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package rxgo
2
3type factoryIterable struct {
4 factory func(opts ...Option) <-chan Item
5}
6
7func newFactoryIterable(factory func(opts ...Option) <-chan Item) Iterable {
8 return &factoryIterable{factory: factory}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected