UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

17 lines (14 loc) 526 B
// ets_tracing: off import { NoSuchElementException } from "../GlobalExceptions/index.js" import type * as O from "../Option/index.js" import type { Effect } from "./effect.js" import { someOrFail_ } from "./someOrFail.js" /** * Extracts the optional value, or fails with a `NoSuchElementException` */ export function someOrFailException<R, E, A>( self: Effect<R, E, O.Option<A>>, __trace?: string ): Effect<R, E | NoSuchElementException, A> { return someOrFail_(self, () => new NoSuchElementException(), __trace) }