aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t0082.scala
blob: 2a9e549b11e5d0657ebda6eb0aecd72cc6c9750d (plain) (tree)
1
2
3
4
5
6





                                                                             










                                                                 
object Main {

    def min0[A](less: (A, A) => Boolean, xs: List[A]): Option[A] = xs match {
        case List()  => None
        case List(x) => Some(x)
        case y :: ys => (min0(less, ys): @unchecked) match {
            case Some(m) => if (less(y, m)) Some(y) else Some(m)
        }
    }

    def min(xs: List[Int]) = min0((x: Int, y: Int) => x < y, xs);

    def main(args: Array[String]) =
        Console.println(min(List()));

}