import { concreteTake } from "@effect/core/stream/Take/operations/_internal/TakeInternal" /** * Checks if this `Take` is a success. * * @tsplus getter effect/core/stream/Take isSuccess */ export function isSuccess(self: Take): boolean { concreteTake(self) return self._exit.isSuccess() }