Releases: winterbe/sequency
0.20.0
0.19.2
0.19.1
0.19.0
This version fixes an issue with passing undefined
values through various sequence operations.
Furthermore an internal rewrite of intermediate operations has been implemented. Sequences now use the native ECMAScript protocol Iterator<T>
instead of the legacy interface SequenceIterator<T>
. If you use custom intermediate operations via extendSequence
you eventually have to adopt your code to fit the Iterator
protocol. Please refer to this documentation for further information.
0.18.0
0.17.0
This version changes range()
to be a closed range (second parameter endExclusive
becomes endInclusive
) to be en par with Kotlin ranges.
This is a breaking change. If you already use the range()
function you have to change your code like this:
import {range} from "sequency";
- range(start, end)
+ range(start, end - 1)
0.16.0
0.15.0
This version adds several improvements to the internal structure of sequences. As a consequence the API documentation is greatly improved. All sequence operations are now correctly documented on the interface type Sequence.
In addition it's now possible to extend sequences with custom user-defined operations. See this example.
Thanks @couzic who made this possible. 👏