import { TakeInternal } from "@effect/core/stream/Take/operations/_internal/TakeInternal" /** * Creates a failing `Take` with the specified failure. * * @tsplus static effect/core/stream/Take.Ops fail */ export function fail(e: E): Take { return new TakeInternal(Exit.fail(Maybe.some(e))) }