Streams class final

Stream操作関数の糖衣構文

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

combineLatest2<T1, T2>(Stream<T1> a, Stream<T2> b) → CombineLatestStream<dynamic, (T1, T2)>
tupleへの型指定を省略してStreamのcombineを行う
combineLatest3<T1, T2, T3>(Stream<T1> a, Stream<T2> b, Stream<T3> c) → CombineLatestStream<dynamic, (T1, T2, T3)>
tupleへの型指定を省略してStreamのcombineを行う
combineLatest4<T1, T2, T3, T4>(Stream<T1> a, Stream<T2> b, Stream<T3> c, Stream<T4> d) → CombineLatestStream<dynamic, (T1, T2, T3, T4)>
tupleへの型指定を省略してStreamのcombineを行う
generate<T>(Future block(StreamEmitter<T> emitter)) Stream<T>
生成型のStreamを生成する.