Forwards the expected value in an Expected object to a function that returns an Expected result.
If the original Expected object contains an error value, it is passed through to the result, and the function is not called.
The actual flatMap function.
The Expected object returned from the function, or an Expected object of the same type containing the original error value.
See Implementation
Forwards the expected value in an Expected object to a function that returns an Expected result.
If the original Expected object contains an error value, it is passed through to the result, and the function is not called.