Entries from 2012-12-27 to 1 day

"for" for Future on Finagle

Finagle? http://twitter.github.com/scala_school/finagle.html for val f = for { u <- authenticate(request) b <- isBanned(u) } yield (u, b) As you may know scala's for is coverted into map and flatMap. val f = authenticate(request).flatMap {…