MCPcopy Index your code
hub / github.com/Effect-TS/effect / allWith

Function allWith

packages/effect/src/internal/fiberRuntime.ts:1996–2007  ·  view source on GitHub ↗
(options?: O)

Source from the content-addressed store, hash-verified

1994
1995/* @internal */
1996export const allWith = <
1997 O extends NoExcessProperties<{
1998 readonly concurrency?: Concurrency | undefined
1999 readonly batching?: boolean | "inherit" | undefined
2000 readonly discard?: boolean | undefined
2001 readonly mode?: "default" | "validate" | "either" | undefined
2002 readonly concurrentFinalizers?: boolean | undefined
2003 }, O>
2004>(options?: O) =>
2005<const Arg extends Iterable<Effect.Effect<any, any, any>> | Record<string, Effect.Effect<any, any, any>>>(
2006 arg: Arg
2007): Effect.All.Return<Arg, O> => all(arg, options)
2008
2009/* @internal */
2010export const allSuccesses = <Eff extends Effect.Effect<any, any, any>>(

Callers

nothing calls this directly

Calls 1

allFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…