1
2 val f = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None
3
4 assert(CW7b.first(List((1,0),(2,0),(3,0),(4,0)), f) == Some(List((4,0))))
5 assert(CW7b.first(List((1,0),(2,0),(3,0)), f) == None)