(isEquivalent: (self: A, that: A) => boolean)
| 2228 | * Option.bind("y", () => Option.some(3)), |
| 2229 | * Option.let("sum", ({ x, y }) => x + y) |
| 2230 | * ) // => Option.some({ x: 2, y: 3, sum: 5 }) |
| 2231 | * ``` |
| 2232 | * |
| 2233 | * @see {@link Do} for starting the chain |
| 2234 | * @see {@link bind} to add `Option` values |
| 2235 | * @see {@link bindTo} to start by naming an existing `Option` |
| 2236 | * |