combineAllNode<S, T> static method

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

Implementation

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