( ...keys: Keys )
| 216 | * @since 2.0.0 |
| 217 | */ |
| 218 | export const make = <Keys extends ReadonlyArray<unknown>>( |
| 219 | ...keys: Keys |
| 220 | ): MutableHashSet<Keys[number]> => fromIterable(keys) |
| 221 | |
| 222 | /** |
| 223 | * Adds a value to the MutableHashSet, mutating the set in place. |
nothing calls this directly
no test coverage detected