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

Function every_

packages/effect-app/src/Set.ts:188–190  ·  view source on GitHub ↗
(set: Set<A>, predicate: Predicate<A>)

Source from the content-addressed store, hash-verified

186 * true if all elements match predicate
187 */
188export function every_<A>(set: Set<A>, predicate: Predicate<A>): boolean {
189 return not(some(not(predicate)))(set)
190}
191
192/**
193 * Map + Flatten

Callers 1

everyFunction · 0.85

Calls 2

notFunction · 0.90
someFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…