combineAllFromSelectorNode<S, T> static method

CombineAllNode<S, T> combineAllFromSelectorNode<S, T>(
  1. List<StreamNode<S>> selector(
    1. StreamGraph
    ),
  2. Stream<T> combinator(
    1. List<Stream<S>>
    ), {
  3. String? name,
})

Implementation

static CombineAllNode<S, T> combineAllFromSelectorNode<S, T>(
        List<StreamNode<S>> Function(StreamGraph) selector,
        Stream<T> Function(List<Stream<S>>) combinator,
        {String? name}) =>
    CombineAllNode<S, T>(selector, combinator, name: name);