MCPcopy Create free account
hub / github.com/Effect-TS/effect / make

Function make

packages/effect/src/MutableHashSet.ts:218–220  ·  view source on GitHub ↗
(
  ...keys: Keys
)

Source from the content-addressed store, hash-verified

216 * @since 2.0.0
217 */
218export 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.

Callers

nothing calls this directly

Calls 1

fromIterableFunction · 0.70

Tested by

no test coverage detected