()
| 65 | |
| 66 | /** @internal */ |
| 67 | export const empty = <V = never>(): HashSet<V> => makeImpl(HashMap.empty<V, boolean>()) |
| 68 | |
| 69 | /** @internal */ |
| 70 | export const make = <Values extends ReadonlyArray<any>>( |
nothing calls this directly
no test coverage detected
searching dependent graphs…