MCPcopy
hub / github.com/Effect-TS/effect / make

Function make

packages/experimental/src/PersistedQueue.ts:80–87  ·  view source on GitHub ↗
(options: {
  readonly name: string
  readonly schema: Schema.Schema<A, I, R>
})

Source from the content-addressed store, hash-verified

78 * @category Accessors
79 */
80export const make = <A, I, R>(options: {
81 readonly name: string
82 readonly schema: Schema.Schema<A, I, R>
83}): Effect.Effect<PersistedQueue<A, R>, never, PersistedQueueFactory> =>
84 Effect.flatMap(
85 PersistedQueueFactory,
86 (factory) => factory.make(options)
87 )
88
89/**
90 * @since 1.0.0

Callers

nothing calls this directly

Calls 8

makeMethod · 0.65
offerMethod · 0.65
pipeMethod · 0.65
takeMethod · 0.65
closeMethod · 0.65
encodeUnknownFunction · 0.50
decodeUnknownFunction · 0.50
fFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…