( f: (e: E, options: SchemaAST.ParseOptions) => Effect.Effect<T, SchemaIssue.Issue, R> )
| 536 | * - On success, wraps the result in `Some`. |
| 537 | * - On failure, propagates the `Issue`. |
| 538 | * |
| 539 | * **Example** (Parsing with failure) |
| 540 | * |
| 541 | * ```ts import.meta.vitest |
| 542 | * import { Effect, Option, SchemaGetter, SchemaIssue } from "effect" |
| 543 | * |
| 544 | * const safeParseInt = SchemaGetter.transformOrFail<number, string>( |
| 545 | * (s, options) => { |
no test coverage detected
searching dependent graphs…