(options?: O)
| 1994 | |
| 1995 | /* @internal */ |
| 1996 | export 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 */ |
| 2010 | export const allSuccesses = <Eff extends Effect.Effect<any, any, any>>( |
nothing calls this directly
no test coverage detected
searching dependent graphs…