Run the query and check if all results pass the given predicate function.
Run the query and call a function for each result.
A function to call for each result. Its return value is ignored.
Reverse the query results so the last result is returned first.
A new query for the reversed sequence.
Transform query results using a mapping function.
A callback that takes a query result and returns the transformed value.
A new query for the transformed results.
Query for values that satisfy a given predicate function.
A callback that returns true
to keep a value or false
to discard it.
A new query for the filtered results.
Generated using TypeDoc
Represents an iterable collection with query transformations applied. Queries can be looped over using
for..of
or additional query operations can be chained to produce a new query.