Skip to content

Instantly share code, notes, and snippets.

@navicore
Created October 6, 2014 15:07
Show Gist options
  • Save navicore/364f708052158561577d to your computer and use it in GitHub Desktop.
Save navicore/364f708052158561577d to your computer and use it in GitHub Desktop.
package fpscala
sealed trait List[+A]
case object Nil extends List[Nothing]
case class Cons[+A](head: A, tail: List[A]) extends List[A]
object List {
def sum(ints: List[Int]): Int = ints match {
case Nil => 0
case Cons(x,xs) => x + sum(xs)
}
def product(ds: List[Double]): Double = ds match {
case Nil => 1.0
case Cons(0.0, _) => 0.0
case Cons(x, xs) => x * product(xs)
}
def apply[A](as: A*): List[A] =
if (as.isEmpty) Nil
else Cons(as.head, apply(as.tail: _*))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment