Skip to content

Instantly share code, notes, and snippets.

@vigneshwaranr
Created May 29, 2020 07:32
Show Gist options
  • Save vigneshwaranr/deae0effc26c16796f3376d209107861 to your computer and use it in GitHub Desktop.
Save vigneshwaranr/deae0effc26c16796f3376d209107861 to your computer and use it in GitHub Desktop.
9e8a12f2112b / MaybeDivideable2 / divide3
def divide3(a: Int, b: Int): MaybeDivideable = {
for {
x <- MaybeDivideable(a)
y <- MaybeDivideable(b)
} yield (x / y)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment