DartStream<T> mixin

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

allMatch(JPredicate<T> predicate) bool
anyMatch(JPredicate<T> predicate) bool
collect<R, A>(Collector<T, A, R> collector) → R
count() int
distinct() DartStream<T>
dropWhile(JPredicate<T> predicate) DartStream<T>
filter(JPredicate<T> predicate) DartStream<T>
findAny() → T?
findFirst() → T?
flatMap<R>(JFunction<T, DartStream<R>> mapper) DartStream<R>
forEach(JConsumer<T> action) → void
limit(int maxSize) DartStream<T>
map<R>(JFunction<T, R> mapper) DartStream<R>
max([Comparator<T> comparator]) → T?
min([Comparator<T> comparator]) → T?
noneMatch(JPredicate<T> predicate) bool
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
peek(JConsumer<T> action) DartStream<T>
reduce<R>(R identity, JBiFunction<R, T, R> accumulator) → R
reduce0(JBinaryOperator<T> accumulator) → T?
reverse() DartStream<T>
shuffle() DartStream<T>
skip(int n) DartStream<T>
sorted([Comparator<T> comparator]) DartStream<T>
takeWhile(JPredicate<T> predicate) DartStream<T>
toList() List<T>
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

empty<R>() DartStream<R>
iterator<R>(Iterator<R> iterator) DartStream<R>
of<R>(List<R> list) DartStream<R>
one<R>(R e) DartStream<R>
range(int start, int end) DartStream<int>