Last active
August 29, 2015 14:20
-
-
Save danstn/ff1f8eeb2bba88d92c05 to your computer and use it in GitHub Desktop.
My Opt type implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed trait Opt[+A] { | |
def flatMap[T](f: A => Opt[T]): Opt[T] = | |
fold[Opt[T]](Nothing)(f) | |
def map[T](f: A => T): Opt[T] = | |
fold[Opt[T]](Nothing)(a => Something(f(a))) | |
def fold[B](g: => B)(f: A => B): B = | |
this match { | |
case Something(a) => f(a) | |
case Nothing => g | |
} | |
} | |
case class Something[A](value: A) extends Opt[A] | |
case object Zero extends Opt[Nothing] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment