()
| 152 | * @since 2.0.0 |
| 153 | */ |
| 154 | export const empty = <K = never>(): MutableHashSet<K> => fromHashMap(MutableHashMap.empty()) |
| 155 | |
| 156 | /** |
| 157 | * Creates a MutableHashSet from an iterable collection of values. |
nothing calls this directly
no test coverage detected