(keys: Iterable<K>)
| 183 | * @since 2.0.0 |
| 184 | */ |
| 185 | export const fromIterable = <K = never>(keys: Iterable<K>): MutableHashSet<K> => |
| 186 | fromHashMap(MutableHashMap.fromIterable(Array.from(keys).map((k) => [k, true]))) |
| 187 | |
| 188 | /** |
| 189 | * Creates a MutableHashSet from a variable number of values. |
no test coverage detected