(f: (e: E) => T)
| 519 | * @since 4.0.0 |
| 520 | */ |
| 521 | export function transform<T, E>(f: (e: E) => T): Getter<T, E> { |
| 522 | return transformOptional(Option.map(f)) |
| 523 | } |
| 524 | |
| 525 | /** |
| 526 | * Creates a getter that applies a fallible, effectful transformation to present values. |
no test coverage detected