Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
*/
188
export
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
every
Function · 0.85
Calls
2
not
Function · 0.90
some
Function · 0.70
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…