( f: (e: E, options: SchemaAST.ParseOptions) => Effect.Effect<Option.Option<T>, SchemaIssue.Issue, R> )
| 402 | * - When input is `None`, returns `None` (no-op). |
| 403 | * - When input is `Some(e)`, calls `f(e, options)` to produce the result. |
| 404 | * - `f` may return `None` to omit the value, or fail with an `Issue`. |
| 405 | * |
| 406 | * **Example** (Transforming only present values) |
| 407 | * |
| 408 | * ```ts import.meta.vitest |
| 409 | * import { Effect, Option, SchemaGetter } from "effect" |
| 410 | * |
| 411 | * const parseIfPresent = SchemaGetter.onSome<number, string>( |
no test coverage detected
searching dependent graphs…