testing3-bak/knight2a_test.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 20 Nov 2018 13:42:32 +0000
changeset 211 1859d978b18e
parent 204 1b04ea68dca6
permissions -rw-r--r--
updated


val f = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None

assert(CW7b.first(List((1,0),(2,0),(3,0),(4,0)), f) == Some(List((4,0))))
assert(CW7b.first(List((1,0),(2,0),(3,0)), f) == None)