- Notifications
You must be signed in to change notification settings - Fork14
⚡️ Type-safe functional sequences for processing iterable data
License
winterbe/sequency
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Type-safe functional sequences for processing iterable data in TypeScript and JavaScript.
★★★ Like this project?Leave a star andfollow on Twitter! Thanks. ★★★
Sequency is a lightweight (5 KB minified), intensely tested (200+ tests, 99% coverage), type-safe functional programming library for processing iterable data such as arrays, sets and maps. It's written in TypeScript, compiles to ES5-compatible JavaScript and works in all current browsers and Node applications. The API is inspired bySequences from the programming languageKotlin.
Try Sequency right in your browser.
Download thelatest release from GitHub or install Sequency fromNPM:
npm install --save sequency
Alternatively use Sequency fromCDN by adding this to your HTML:
<scriptsrc="https://unpkg.com/sequency"></script>
Sequency is centered around a single class calledSequence to process any kind of iterable data such as arrays, sets or maps. The API is inspired byKotlinSequences.
Sequences can be created by utilizing one of the following functions:
import{asSequence,sequenceOf,emptySequence,range,generateSequence,extendSequence}from'sequency';
sequenceOfaccepts one or many values and returns a new sequence.asSequenceaccepts an iterable (e.g. an array, set or map) and returns a new sequence.emptySequencereturns a new empty sequence.rangereturns as number sequence consisting of all numbers betweenstartInclusiveandendExclusive.generateSequencereturns a sequence generated from the given generator function.extendSequenceallows extending sequences with user-defined operations (seeexample).
EachSequence provides a fluent functional API consisting of intermediate and terminal operations. Intermediate functions (e.g.filter,map,sorted) return a new sequence, thus enabling method chaining. Terminal functions (e.g.toArray,groupBy,findLast) return an arbitrary result. Detailed descriptions of all operations are available in theAPI docs.
Sequences arelazily evaluated to avoid examining all of the input data when it's not necessary. Sequences always perform the minimal amount of operations to gain results. E.g. in afilter - map - find sequence bothmap andfind are executed just one time before returning the single result.
Sequency is fully documented via inline JSDoc comments.The docs are also available online. When using an IDE like Intellij IDEA or Webstorm the docs are available inline right inside your editor.
I've built Sequency because I'm using Kotlin for server-side code but for some reasons still use TypeScript and JavaScript for client-side browser code. I find that using the same APIs for collection processing both on client and server is a huge gain in productivity for me.
MIT ©winterbe
About
⚡️ Type-safe functional sequences for processing iterable data
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Contributors2
Uh oh!
There was an error while loading.Please reload this page.

