Created
October 6, 2014 15:07
-
-
Save navicore/364f708052158561577d to your computer and use it in GitHub Desktop.
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
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