(value: A)
| 975 | |
| 976 | /** @internal */ |
| 977 | export const fromNullishOr = <A>(value: A): Effect.Effect<NonNullable<A>, Cause.NoSuchElementError> => |
| 978 | value == null ? fail(new NoSuchElementError()) : succeed(value) |
| 979 | |
| 980 | /** @internal */ |
| 981 | export const yieldNowWith: (priority?: number) => Effect.Effect<void> = makePrimitive({ |