Returns an iterable filtered by the provided predicate.
Returns the number of items contained in the collection by iterating the contents.
Returns an iterable mapped by the provided selector.
Applies a reducer function to all the elements in this sequence. The first entry is used as the initial accumulator value, and the specified function is used to select the result value.
Applies a reducer function to all the elements in this sequence. The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value.
Creates a copy of the contents as an array.
Static
createCreates an ExtendedIterable wrapper for the provided source.
Extends an iterable with methods like filter, map, and reduce.