Skip to content

Instantly share code, notes, and snippets.

@SebastianAas
Created January 21, 2021 10:22
Show Gist options
  • Save SebastianAas/5a65f6641e70f1f5219d820adaff330e to your computer and use it in GitHub Desktop.
Save SebastianAas/5a65f6641e70f1f5219d820adaff330e to your computer and use it in GitHub Desktop.
Example Desugar
def example() = {
val a1 = Set(1, 2, 3)
val b2 = Set(1, 2, 3)
a1
.flatMap(x =>
b2
.withFilter(y => y > 2)
.map(y => x + y)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment