Skip to content

Instantly share code, notes, and snippets.

@danstn
Last active August 29, 2015 14:20
Show Gist options
  • Save danstn/ff1f8eeb2bba88d92c05 to your computer and use it in GitHub Desktop.
Save danstn/ff1f8eeb2bba88d92c05 to your computer and use it in GitHub Desktop.
My Opt type implementation
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