(self: HashSet<V>)
| 97 | |
| 98 | /** @internal */ |
| 99 | export const size = <V>(self: HashSet<V>): number => HashMap.size(keyMap(self)) |
| 100 | |
| 101 | /** @internal */ |
| 102 | export const isEmpty = <V>(self: HashSet<V>): boolean => HashMap.isEmpty(keyMap(self)) |
no test coverage detected