(self: Result<A, E>)
| 1519 | * Creates a `Result<{}>` (success with an empty object). Use with |
| 1520 | * {@link bind} to add `Result`-producing fields and {@link let_ let} |
| 1521 | * to add pure computed fields. |
| 1522 | * |
| 1523 | * **Example** (Building an object step by step) |
| 1524 | * |
| 1525 | * ```ts import.meta.vitest |