typed-set
Typed Set structure with no dependencies
Typed Set structure with no dependencies
Set transformers.
eXTended JSON - JSON with comments, function calls, mathematical expression evaluation and embedded remote data
High performance set theory - functional utilities which operate on arbitrary input sets.
Integer sequences, number types and more
noted-like-monkey
please-roof-effect-visitor
sleep-explanation-web3-left
Static data-set of countries, with additional methods for convenience.
Javascript Set operations
Return the Cartesian power.
Return the Cartesian product.
Return the Cartesian square.
Return the Cartesian power.
Return the Cartesian product.
Return the Cartesian square.
Return the n-fold Cartesian product.
a TypeScript library for working with sets, with a ponyfill for TC39's Set Methods proposal
The list of utils for collections
``` npm i @sndmath/set ``` ## Import ``` import { SndSet } from '@sndmath/set'; ``` ## Union ``` let v = [2, 4, 4, 5, 17, 'lulu']; let s0 = new SndSet(v); v = [3, 14, 14, 5, 9, 17]; let s1 = new SndSet(v); let s2 = Array.from(SndSet.union(s0, s1)); consol