(set: Set<A>, predicate: Predicate<A>)
| 147 | * true if one or more elements match predicate |
| 148 | */ |
| 149 | export function some_<A>(set: Set<A>, predicate: Predicate<A>): boolean { |
| 150 | return some(predicate)(set) |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Projects a Set through a function |
nothing calls this directly
no test coverage detected
searching dependent graphs…