(self: HashSet<V>, predicate: (value: V) => boolean)
| 158 | |
| 159 | /** @internal */ |
| 160 | export const filter = <V>(self: HashSet<V>, predicate: (value: V) => boolean): HashSet<V> => |
| 161 | fromPredicate(self, predicate) |
| 162 | |
| 163 | /** @internal */ |
| 164 | export const some = <V>(self: HashSet<V>, predicate: (value: V) => boolean): boolean => { |
no test coverage detected
searching dependent graphs…