(self: HashSet<V0>, that: HashSet<V1>)
| 135 | |
| 136 | /** @internal */ |
| 137 | export const difference = <V0, V1>(self: HashSet<V0>, that: HashSet<V1>): HashSet<V0> => |
| 138 | fromPredicate(self, (value) => !has(that, value as any)) |
| 139 | |
| 140 | /** @internal */ |
| 141 | export const isSubset = <V0, V1>(self: HashSet<V0>, that: HashSet<V1>): boolean => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…