Filters items of a sequence by a given predicate.
The predicate function
Sequence of the filtered items
Maps each value of the seq
Mapping function
Seq of the mapped values
Creates a seq of numeric values from a start value (including) to an end value (excluding).
Start value
End value
Seq of iterated values
Generated using TypeDoc
Class as representation of a lazy sequence.
This implementation does not use ES2015 generators/iterators, because the ES2015 feature "for (const item of seq)" has a really poor performance.
See: https://jsfiddle.net/vavkuoLp/
License: Public Domain