( a: A )
| 858 | * **Example** (Lifting a parser) |
| 859 | * |
| 860 | * ```ts import.meta.vitest |
| 861 | * import { Option } from "effect" |
| 862 | * |
| 863 | * const parse = (s: string): number | undefined => { |
| 864 | * const n = parseFloat(s) |
| 865 | * return isNaN(n) ? undefined : n |