Skip to content

Instantly share code, notes, and snippets.

@3v0k4
Last active December 21, 2019 00:07
Show Gist options
  • Select an option

  • Save 3v0k4/746535bced8f803f82d87f5d0651505e to your computer and use it in GitHub Desktop.

Select an option

Save 3v0k4/746535bced8f803f82d87f5d0651505e to your computer and use it in GitHub Desktop.
Right(1).map(x =>
Right(2).map(y => x + y)) // Right(Right(3))
Right(1).chain(x =>
Right(2).map(y => x + y)) // Right(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment