A bunch of helper functions to work with read-only sets. Works internally with native sets without any kind of magic.
import { add, remove } from '@cubux/readonly-set';
const input: ReadonlySet<number> = new Set([10, 20, 30]);
console.log(add(input, 40));
// => Set(4) { 10, 20, 30, 40 }
console.log(remove(input, 20));
// => Set(2) { 10, 30 }
Alternative usage:
import * as RoSet from '@cubux/readonly-set';
const input: ReadonlySet<number> = new Set([10, 20, 30]);
console.log(RoSet.add(input, 40));
// => Set(4) { 10, 20, 30, 40 }
import { FC, useState, ChangeEvent } from 'react';
import { toggle } from '@cubux/readonly-set';
const TodoList: FC = () => {
const [checked, setChecked] = useState<ReadonlySet<string>>(() => new Set());
const handleCheckItem = (key: string, e: ChangeEvent<HTMLInputElement>) =>
setChecked(prev => toggle(prev, key, e.target.checked));
...
};
npm i @cubux/readonly-set
Add item to set
add(
set: ReadonlySet<K>,
key: K,
): ReadonlySet<K>
Creates new set from input set
by adding item key
.
- Will return input
set
whenkey
is already included.
const input: ReadonlySet<number> = new Set([10, 20, 30]);
add(input, 40);
// => Set(4) { 10, 20, 30, 40 }
See also: toggle()
, union()
.
Intersection of sets
intersection(
set: ReadonlySet<K>,
...and: ReadonlySet<K>[],
): ReadonlySet<K>
Creates new set containing only items which are presented in all given sets.
- Will return input
set
when nothing to change (t.i. whenset
is a subset of everyand
sets). - May return earlier when intermediate result is already empty set.
const input: ReadonlySet<number> = new Set([10, 20, 30, 40]);
intersection(input, new Set([30, 42, 20]));
// => Set(2) { 20, 30 }
See also subtract()
, union()
.
Remove item from set
remove(
set: ReadonlySet<K>,
key: K,
): ReadonlySet<K>
Creates new set from set
without given item key
.
- Will return input
set
whenkey
is not included inset
.
const input: ReadonlySet<number> = new Set([10, 20, 30]);
console.log(remove(input, 20));
// => Set(2) { 10, 30 }
See also add()
, intersection()
, toggle()
.
Subtract sets
subtract(
set: ReadonlySet<K>,
...sub: ReadonlySet<K>[]
): ReadonlySet<K>
Creates new set from set
by subtracting every given sub
set.
- Will return input
set
when nothing to change (t.i. whenset
doesn't include any item of anysub
sets). - May return earlier when intermediate result is already empty set.
- Logic of
subtract(a, b, c)
is same assubtract(subtract(a, b), c)
and is same assubtract(a, union(b, c))
.
const input: ReadonlySet<number> = new Set([10, 20, 30, 40]);
subtract(input, new Set([30, 42, 20]));
// => Set(2) { 10, 40 }
See also intersection()
, remove()
.
syncFrom(
prev: ReadonlySet<K>,
next: ReadonlySet<K>,
): ReadonlySet<K>
Returns prev
when its elements are equal to elements in next
(order does
not matter). Otherwise, returns next
.
Toggle an item in set
toggle(
set: ReadonlySet<K>,
key: K,
toBeIncluded?: boolean,
): ReadonlySet<K>
Creates new set from input set
by either adding or removing item key
with
respect to optional flag toBeIncluded
.
- If
toBeIncluded
isundefined
(by default), it works as!set.has(key)
, t.i.key
will be added ifset
doesn't include it, or removed otherwise. So, the result is always a new set in this case. - If
toBeIncluded
is defined, it causestoggle()
to work as eitheradd()
whentoBeIncluded
istrue
, or asremove()
otherwise. In this casetoggle()
may return inputset
when nothing to change.
const input: ReadonlySet<number> = new Set([10, 20, 30]);
console.log(toggle(input, 20));
console.log(toggle(input, 20, false));
// both => Set(2) { 10, 30 }
console.log(toggle(input, 40));
console.log(toggle(input, 40, true));
// both => Set(4) { 10, 20, 30, 40 }
console.log(toggle(input, 20, true));
console.log(toggle(input, 40, false));
// both => Set(3) { 10, 20, 30 }
See also add()
, remove()
.
Union of sets
union(
set: ReadonlySet<K>,
...add: ReadonlySet<K>[],
): ReadonlySet<K>
Creates new set which includes items from all the given sets.
- Will return input
set
when nothing to change (t.i. whenset
is a superset of everysub
sets).
const input: ReadonlySet<number> = new Set([10, 20, 30]);
union(input, new Set([30, 42, 20, 40]));
// => Set(5) { 10, 20, 30, 42, 40 }
See also add()
.