Skip to content

Instantly share code, notes, and snippets.

@dre-hh
Last active December 21, 2016 15:39
Show Gist options
  • Save dre-hh/3967aa1f12edbcbe09ee8edd57e225c5 to your computer and use it in GitHub Desktop.
Save dre-hh/3967aa1f12edbcbe09ee8edd57e225c5 to your computer and use it in GitHub Desktop.
//ruby
this = x.&doThis
that = this && y&.doThat(this)
//scala
that = for {
this <- x.doThis
that <- y.doThat(this)
} yield that
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment