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

Function make

packages/effect/src/internal/hashSet.ts:70–72  ·  view source on GitHub ↗
(
  ...values: Values
)

Source from the content-addressed store, hash-verified

68
69/** @internal */
70export const make = <Values extends ReadonlyArray<any>>(
71 ...values: Values
72): HashSet<Values[number]> => fromIterable(values)
73
74/** @internal */
75export const fromIterable = <V>(values: Iterable<V>): HashSet<V> => {

Callers

nothing calls this directly

Calls 1

fromIterableFunction · 0.70

Tested by

no test coverage detected