combineLatest3<A, B, C, T> static method
Merges the given Streams into a single Stream sequence by using the
combiner
function whenever any of the stream sequences emits an
item.
The Stream will not emit until all streams have emitted at least one item.
Example
Rx.combineLatest3(
Stream.value('a'),
Stream.value('b'),
Stream.fromIterable(['c', 'c']),
(a, b, c) => a + b + c)
.listen(print); //prints 'abc', 'abc'
Implementation
static Stream<T> combineLatest3<A, B, C, T>(
Stream<A> streamA,
Stream<B> streamB,
Stream<C> streamC,
T Function(A a, B b, C c) combiner) =>
CombineLatestStream.combine3(streamA, streamB, streamC, combiner);