Skip to content

Instantly share code, notes, and snippets.

@zhengbli
Last active December 8, 2019 04:33
Show Gist options
  • Save zhengbli/53559db5a04565e1b8a475cc0f7a0e51 to your computer and use it in GitHub Desktop.
Save zhengbli/53559db5a04565e1b8a475cc0f7a0e51 to your computer and use it in GitHub Desktop.
result1.Match(
success1 => {
result2.Match(
success2 => {
...
// Some work involving success2
},
err2 => Handler(err2)
)
},
err1 => Handler(err1)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment