SyncResultSet class Null safety Query

A ResultSet which can be iterated synchronously as well asynchronously.

Implemented types
Available Extensions

Constructors

SyncResultSet()

Properties

current Result
The current element. [...]
read-only, inherited
first Result
Returns the first element. [...]
read-only, inherited
hashCode int
The hash code for this object. [...]
read-only, inherited
isEmpty bool
Returns true if there are no elements in this collection. [...]
read-only, inherited
isNotEmpty bool
Returns true if there is at least one element in this collection. [...]
read-only, inherited
iterator Iterator<Result>
Returns a new Iterator that allows iterating the elements of this Iterable. [...]
read-only, inherited
last Result
Returns the last element. [...]
read-only, inherited
length int
Returns the number of elements in this. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited
single Result
Checks that this iterable has only one element, and returns that element. [...]
read-only, inherited

Methods

allResults() FutureOr<List<Result>>
Consumes this result set and returns a list of all its Results.
inherited
any(bool test(Result element)) bool
Checks whether any element of this iterable satisfies test. [...]
inherited
asStream() Stream<Result>
Returns a stream which consumes this result set and emits its results. [...]
inherited
cast<R>() Iterable<R>
Provides a view of this iterable as an iterable of R instances. [...]
inherited
contains(Object? element) bool
Whether the collection contains an element equal to element. [...]
inherited
elementAt(int index) Result
Returns the indexth element. [...]
inherited
every(bool test(Result element)) bool
Checks whether every element of this iterable satisfies test. [...]
inherited
expand<T>(Iterable<T> toElements(Result element)) Iterable<T>
Expands each element of this Iterable into zero or more elements. [...]
inherited
firstWhere(bool test(Result element), {Result orElse()?}) Result
Returns the first element that satisfies the given predicate test. [...]
inherited
fold<T>(T initialValue, T combine(T previousValue, Result element)) → T
Reduces a collection to a single value by iteratively combining each element of the collection with an existing value [...]
inherited
followedBy(Iterable<Result> other) Iterable<Result>
Returns the lazy concatenation of this iterable and other. [...]
inherited
forEach(void action(Result element)) → void
Invokes action on each element of this iterable in iteration order.
inherited
join([String separator = ""]) String
Converts each element to a String and concatenates the strings. [...]
inherited
lastWhere(bool test(Result element), {Result orElse()?}) Result
Returns the last element that satisfies the given predicate test. [...]
inherited
map<T>(T toElement(Result e)) Iterable<T>
The current elements of this iterable modified by toElement. [...]
inherited
moveNext() bool
Advances the iterator to the next element of the iteration. [...]
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
reduce(Result combine(Result value, Result element)) Result
Reduces a collection to a single value by iteratively combining elements of the collection using the provided function. [...]
inherited
singleWhere(bool test(Result element), {Result orElse()?}) Result
Returns the single element that satisfies test. [...]
inherited
skip(int count) Iterable<Result>
Returns an Iterable that provides all but the first count elements. [...]
inherited
skipWhile(bool test(Result value)) Iterable<Result>
Returns an Iterable that skips leading elements while test is satisfied. [...]
inherited
take(int count) Iterable<Result>
Returns a lazy iterable of the count first elements of this iterable. [...]
inherited
takeWhile(bool test(Result value)) Iterable<Result>
Returns a lazy iterable of the leading elements satisfying test. [...]
inherited
toList({bool growable = true}) List<Result>
Creates a List containing the elements of this Iterable. [...]
inherited
toSet() Set<Result>
Creates a Set containing the same elements as this iterable. [...]
inherited
toString() String
A string representation of this object. [...]
inherited
where(bool test(Result element)) Iterable<Result>
Returns a new lazy Iterable with all elements that satisfy the predicate test. [...]
inherited
whereType<T>() Iterable<T>
Returns a new lazy Iterable with all elements that have type T. [...]
inherited

Operators

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