author | Christian Urban <christian.urban@kcl.ac.uk> |
Mon, 25 Dec 2023 01:10:55 +0100 | |
changeset 482 | 769bda18a43d |
parent 463 | 0315d9983cd0 |
permissions | -rw-r--r-- |
import M4a._ val f_urban = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None import scala.concurrent._ import scala.concurrent.duration._ import ExecutionContext.Implicits.global import scala.language.postfixOps lazy val f = Future { assert(first(List((1,0),(2,0),(3,0),(4,0)), f_urban) == Some(List((4,0)))) assert(first(List((1,0),(2,0),(3,0)), f_urban) == None) } Await.result(f, 32 second)