MCPcopy Create free account
hub / github.com/effect-app/libs / remove

Function remove

packages/effect-app/src/Set.ts:474–477  ·  view source on GitHub ↗
(E: Equivalence.Equivalence<A>)

Source from the content-addressed store, hash-verified

472 * Delete a value from a set
473 */
474export function remove<A>(E: Equivalence.Equivalence<A>): (a: A) => (set: Set<A>) => Set<A> {
475 const rem = remove_(E)
476 return (a) => (set) => rem(set, a)
477}
478
479/**
480 * Delete a value from a set

Callers 3

make_Function · 0.90
toggle_Function · 0.70
make_Function · 0.70

Calls 1

remove_Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…